Models
Types

Models

Wallet

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
address String
  • @unique
Yes -
realmsL1 Realm[]
  • -
Yes -
realmsL2 Realm[]
  • -
Yes -
realmsSettled Realm[]
  • -
Yes -

Operations

findUnique

Find zero or one Wallet

// Get one Wallet
const wallet = await prisma.wallet.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where WalletWhereUniqueInput Yes

Output

Type: Wallet
Required: No
List: No

findFirst

Find first Wallet

// Get one Wallet
const wallet = await prisma.wallet.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where WalletWhereInput No
orderBy WalletOrderByWithRelationInput[] | WalletOrderByWithRelationInput No
cursor WalletWhereUniqueInput No
take Int No
skip Int No
distinct WalletScalarFieldEnum[] No

Output

Type: Wallet
Required: No
List: No

findMany

Find zero or more Wallet

// Get all Wallet
const Wallet = await prisma.wallet.findMany()
// Get first 10 Wallet
const Wallet = await prisma.wallet.findMany({ take: 10 })

Input

Name Type Required
where WalletWhereInput No
orderBy WalletOrderByWithRelationInput[] | WalletOrderByWithRelationInput No
cursor WalletWhereUniqueInput No
take Int No
skip Int No
distinct WalletScalarFieldEnum[] No

Output

Type: Wallet
Required: Yes
List: Yes

create

Create one Wallet

// Create one Wallet
const Wallet = await prisma.wallet.create({
  data: {
    // ... data to create a Wallet
  }
})

Input

Name Type Required
data WalletCreateInput | WalletUncheckedCreateInput Yes

Output

Type: Wallet
Required: Yes
List: No

delete

Delete one Wallet

// Delete one Wallet
const Wallet = await prisma.wallet.delete({
  where: {
    // ... filter to delete one Wallet
  }
})

Input

Name Type Required
where WalletWhereUniqueInput Yes

Output

Type: Wallet
Required: No
List: No

update

Update one Wallet

// Update one Wallet
const wallet = await prisma.wallet.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data WalletUpdateInput | WalletUncheckedUpdateInput Yes
where WalletWhereUniqueInput Yes

Output

Type: Wallet
Required: No
List: No

deleteMany

Delete zero or more Wallet

// Delete a few Wallet
const { count } = await prisma.wallet.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where WalletWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Wallet

const { count } = await prisma.wallet.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data WalletUpdateManyMutationInput | WalletUncheckedUpdateManyInput Yes
where WalletWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Wallet

// Update or create a Wallet
const wallet = await prisma.wallet.upsert({
  create: {
    // ... data to create a Wallet
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Wallet we want to update
  }
})

Input

Name Type Required
where WalletWhereUniqueInput Yes
create WalletCreateInput | WalletUncheckedCreateInput Yes
update WalletUpdateInput | WalletUncheckedUpdateInput Yes

Output

Type: Wallet
Required: Yes
List: No

Realm

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
realmId Int
  • @unique
Yes -
name String?
  • -
No -
wallet Wallet?
  • -
No -
owner String?
  • -
No -
bridgedOwner String?
  • -
No -
ownerL2 String?
  • -
No -
walletL2 Wallet?
  • -
No -
settledOwner String?
  • -
No -
walletSettled Wallet?
  • -
No -
wonder String?
  • -
No -
rarityRank Int
  • @default(0)
Yes -
rarityScore Float
  • @default(0)
Yes -
imageUrl String
  • @default()
Yes -
relic Relic?
  • -
No -
orderType OrderType?
  • -
No -
buildings Building[]
  • -
Yes -
resources Resource[]
  • -
Yes -
relicsOwned Relic[]
  • -
Yes -
traits RealmTrait[]
  • -
Yes -
squad Troop[]
  • -
Yes -
lastAttacked DateTime?
  • -
No -
lastClaimTime DateTime?
  • -
No -
lastTick DateTime?
  • -
No -
lastVaultTime DateTime?
  • -
No -
longitude Float
  • @default(0)
Yes -
latitude Float
  • @default(0)
Yes -
ownArmies Army[]
  • -
Yes -

Operations

findUnique

Find zero or one Realm

// Get one Realm
const realm = await prisma.realm.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RealmWhereUniqueInput Yes

Output

Type: Realm
Required: No
List: No

findFirst

Find first Realm

// Get one Realm
const realm = await prisma.realm.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RealmWhereInput No
orderBy RealmOrderByWithRelationInput[] | RealmOrderByWithRelationInput No
cursor RealmWhereUniqueInput No
take Int No
skip Int No
distinct RealmScalarFieldEnum[] No

Output

Type: Realm
Required: No
List: No

findMany

Find zero or more Realm

// Get all Realm
const Realm = await prisma.realm.findMany()
// Get first 10 Realm
const Realm = await prisma.realm.findMany({ take: 10 })

Input

Name Type Required
where RealmWhereInput No
orderBy RealmOrderByWithRelationInput[] | RealmOrderByWithRelationInput No
cursor RealmWhereUniqueInput No
take Int No
skip Int No
distinct RealmScalarFieldEnum[] No

Output

Type: Realm
Required: Yes
List: Yes

create

Create one Realm

// Create one Realm
const Realm = await prisma.realm.create({
  data: {
    // ... data to create a Realm
  }
})

Input

Name Type Required
data RealmCreateInput | RealmUncheckedCreateInput Yes

Output

Type: Realm
Required: Yes
List: No

delete

Delete one Realm

// Delete one Realm
const Realm = await prisma.realm.delete({
  where: {
    // ... filter to delete one Realm
  }
})

Input

Name Type Required
where RealmWhereUniqueInput Yes

Output

Type: Realm
Required: No
List: No

update

Update one Realm

// Update one Realm
const realm = await prisma.realm.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RealmUpdateInput | RealmUncheckedUpdateInput Yes
where RealmWhereUniqueInput Yes

Output

Type: Realm
Required: No
List: No

deleteMany

Delete zero or more Realm

// Delete a few Realm
const { count } = await prisma.realm.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RealmWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Realm

const { count } = await prisma.realm.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RealmUpdateManyMutationInput | RealmUncheckedUpdateManyInput Yes
where RealmWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Realm

// Update or create a Realm
const realm = await prisma.realm.upsert({
  create: {
    // ... data to create a Realm
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Realm we want to update
  }
})

Input

Name Type Required
where RealmWhereUniqueInput Yes
create RealmCreateInput | RealmUncheckedCreateInput Yes
update RealmUpdateInput | RealmUncheckedUpdateInput Yes

Output

Type: Realm
Required: Yes
List: No

Building

Name Value
@@unique
  • realmId
  • buildingId
@@index
  • realmId
  • buildingId

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
buildingId Int
  • -
Yes -
realmId Int?
  • -
No -
eventId String
  • -
Yes -
buildingIntegrity Int
  • -
Yes -
realm Realm?
  • -
No -
builds String[]
  • -
Yes -

Operations

findUnique

Find zero or one Building

// Get one Building
const building = await prisma.building.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BuildingWhereUniqueInput Yes

Output

Type: Building
Required: No
List: No

findFirst

Find first Building

// Get one Building
const building = await prisma.building.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BuildingWhereInput No
orderBy BuildingOrderByWithRelationInput[] | BuildingOrderByWithRelationInput No
cursor BuildingWhereUniqueInput No
take Int No
skip Int No
distinct BuildingScalarFieldEnum[] No

Output

Type: Building
Required: No
List: No

findMany

Find zero or more Building

// Get all Building
const Building = await prisma.building.findMany()
// Get first 10 Building
const Building = await prisma.building.findMany({ take: 10 })

Input

Name Type Required
where BuildingWhereInput No
orderBy BuildingOrderByWithRelationInput[] | BuildingOrderByWithRelationInput No
cursor BuildingWhereUniqueInput No
take Int No
skip Int No
distinct BuildingScalarFieldEnum[] No

Output

Type: Building
Required: Yes
List: Yes

create

Create one Building

// Create one Building
const Building = await prisma.building.create({
  data: {
    // ... data to create a Building
  }
})

Input

Name Type Required
data BuildingCreateInput | BuildingUncheckedCreateInput Yes

Output

Type: Building
Required: Yes
List: No

delete

Delete one Building

// Delete one Building
const Building = await prisma.building.delete({
  where: {
    // ... filter to delete one Building
  }
})

Input

Name Type Required
where BuildingWhereUniqueInput Yes

Output

Type: Building
Required: No
List: No

update

Update one Building

// Update one Building
const building = await prisma.building.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BuildingUpdateInput | BuildingUncheckedUpdateInput Yes
where BuildingWhereUniqueInput Yes

Output

Type: Building
Required: No
List: No

deleteMany

Delete zero or more Building

// Delete a few Building
const { count } = await prisma.building.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BuildingWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Building

const { count } = await prisma.building.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BuildingUpdateManyMutationInput | BuildingUncheckedUpdateManyInput Yes
where BuildingWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Building

// Update or create a Building
const building = await prisma.building.upsert({
  create: {
    // ... data to create a Building
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Building we want to update
  }
})

Input

Name Type Required
where BuildingWhereUniqueInput Yes
create BuildingCreateInput | BuildingUncheckedCreateInput Yes
update BuildingUpdateInput | BuildingUncheckedUpdateInput Yes

Output

Type: Building
Required: Yes
List: No

Food

Name Value
@@unique
  • realmId
  • buildingId
@@index
  • realmId
  • buildingId

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
realmId Int
  • -
Yes -
buildingId Int
  • -
Yes -
eventId String
  • -
Yes -
qty Int
  • @default(0)
Yes -
harvests Int
  • @default(0)
Yes -
createdAt DateTime
  • -
Yes -
updatedAt DateTime
  • -
Yes -

Operations

findUnique

Find zero or one Food

// Get one Food
const food = await prisma.food.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FoodWhereUniqueInput Yes

Output

Type: Food
Required: No
List: No

findFirst

Find first Food

// Get one Food
const food = await prisma.food.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FoodWhereInput No
orderBy FoodOrderByWithRelationInput[] | FoodOrderByWithRelationInput No
cursor FoodWhereUniqueInput No
take Int No
skip Int No
distinct FoodScalarFieldEnum[] No

Output

Type: Food
Required: No
List: No

findMany

Find zero or more Food

// Get all Food
const Food = await prisma.food.findMany()
// Get first 10 Food
const Food = await prisma.food.findMany({ take: 10 })

Input

Name Type Required
where FoodWhereInput No
orderBy FoodOrderByWithRelationInput[] | FoodOrderByWithRelationInput No
cursor FoodWhereUniqueInput No
take Int No
skip Int No
distinct FoodScalarFieldEnum[] No

Output

Type: Food
Required: Yes
List: Yes

create

Create one Food

// Create one Food
const Food = await prisma.food.create({
  data: {
    // ... data to create a Food
  }
})

Input

Name Type Required
data FoodCreateInput | FoodUncheckedCreateInput Yes

Output

Type: Food
Required: Yes
List: No

delete

Delete one Food

// Delete one Food
const Food = await prisma.food.delete({
  where: {
    // ... filter to delete one Food
  }
})

Input

Name Type Required
where FoodWhereUniqueInput Yes

Output

Type: Food
Required: No
List: No

update

Update one Food

// Update one Food
const food = await prisma.food.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FoodUpdateInput | FoodUncheckedUpdateInput Yes
where FoodWhereUniqueInput Yes

Output

Type: Food
Required: No
List: No

deleteMany

Delete zero or more Food

// Delete a few Food
const { count } = await prisma.food.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FoodWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Food

const { count } = await prisma.food.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FoodUpdateManyMutationInput | FoodUncheckedUpdateManyInput Yes
where FoodWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Food

// Update or create a Food
const food = await prisma.food.upsert({
  create: {
    // ... data to create a Food
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Food we want to update
  }
})

Input

Name Type Required
where FoodWhereUniqueInput Yes
create FoodCreateInput | FoodUncheckedCreateInput Yes
update FoodUpdateInput | FoodUncheckedUpdateInput Yes

Output

Type: Food
Required: Yes
List: No

Relic

Name Value
@@unique
  • realmId
@@index
  • realmId

Fields

Name Type Attributes Required Comment
realmId Int
  • @unique
Yes -
originRealm Realm?
  • -
No -
heldByRealm Int
  • -
Yes -
realmHolder Realm?
  • -
No -
isAnnexed Boolean
  • @default(false)
Yes -

Operations

findUnique

Find zero or one Relic

// Get one Relic
const relic = await prisma.relic.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RelicWhereUniqueInput Yes

Output

Type: Relic
Required: No
List: No

findFirst

Find first Relic

// Get one Relic
const relic = await prisma.relic.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RelicWhereInput No
orderBy RelicOrderByWithRelationInput[] | RelicOrderByWithRelationInput No
cursor RelicWhereUniqueInput No
take Int No
skip Int No
distinct RelicScalarFieldEnum[] No

Output

Type: Relic
Required: No
List: No

findMany

Find zero or more Relic

// Get all Relic
const Relic = await prisma.relic.findMany()
// Get first 10 Relic
const Relic = await prisma.relic.findMany({ take: 10 })

Input

Name Type Required
where RelicWhereInput No
orderBy RelicOrderByWithRelationInput[] | RelicOrderByWithRelationInput No
cursor RelicWhereUniqueInput No
take Int No
skip Int No
distinct RelicScalarFieldEnum[] No

Output

Type: Relic
Required: Yes
List: Yes

create

Create one Relic

// Create one Relic
const Relic = await prisma.relic.create({
  data: {
    // ... data to create a Relic
  }
})

Input

Name Type Required
data RelicCreateInput | RelicUncheckedCreateInput Yes

Output

Type: Relic
Required: Yes
List: No

delete

Delete one Relic

// Delete one Relic
const Relic = await prisma.relic.delete({
  where: {
    // ... filter to delete one Relic
  }
})

Input

Name Type Required
where RelicWhereUniqueInput Yes

Output

Type: Relic
Required: No
List: No

update

Update one Relic

// Update one Relic
const relic = await prisma.relic.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RelicUpdateInput | RelicUncheckedUpdateInput Yes
where RelicWhereUniqueInput Yes

Output

Type: Relic
Required: No
List: No

deleteMany

Delete zero or more Relic

// Delete a few Relic
const { count } = await prisma.relic.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RelicWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Relic

const { count } = await prisma.relic.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RelicUpdateManyMutationInput | RelicUncheckedUpdateManyInput Yes
where RelicWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Relic

// Update or create a Relic
const relic = await prisma.relic.upsert({
  create: {
    // ... data to create a Relic
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Relic we want to update
  }
})

Input

Name Type Required
where RelicWhereUniqueInput Yes
create RelicCreateInput | RelicUncheckedCreateInput Yes
update RelicUpdateInput | RelicUncheckedUpdateInput Yes

Output

Type: Relic
Required: Yes
List: No

BuildingRealmTraitConstraint

Name Value
@@unique
  • buildingId
@@index
  • buildingId

Fields

Name Type Attributes Required Comment
buildingId Int
  • @unique
Yes -
traitType RealmTraitType
  • -
Yes -
max Int
  • @default(5)
Yes -

Operations

findUnique

Find zero or one BuildingRealmTraitConstraint

// Get one BuildingRealmTraitConstraint
const buildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BuildingRealmTraitConstraintWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first BuildingRealmTraitConstraint

// Get one BuildingRealmTraitConstraint
const buildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BuildingRealmTraitConstraintWhereInput No
orderBy BuildingRealmTraitConstraintOrderByWithRelationInput[] | BuildingRealmTraitConstraintOrderByWithRelationInput No
cursor BuildingRealmTraitConstraintWhereUniqueInput No
take Int No
skip Int No
distinct BuildingRealmTraitConstraintScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more BuildingRealmTraitConstraint

// Get all BuildingRealmTraitConstraint
const BuildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.findMany()
// Get first 10 BuildingRealmTraitConstraint
const BuildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.findMany({ take: 10 })

Input

Name Type Required
where BuildingRealmTraitConstraintWhereInput No
orderBy BuildingRealmTraitConstraintOrderByWithRelationInput[] | BuildingRealmTraitConstraintOrderByWithRelationInput No
cursor BuildingRealmTraitConstraintWhereUniqueInput No
take Int No
skip Int No
distinct BuildingRealmTraitConstraintScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one BuildingRealmTraitConstraint

// Create one BuildingRealmTraitConstraint
const BuildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.create({
  data: {
    // ... data to create a BuildingRealmTraitConstraint
  }
})

Input

Name Type Required
data BuildingRealmTraitConstraintCreateInput | BuildingRealmTraitConstraintUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one BuildingRealmTraitConstraint

// Delete one BuildingRealmTraitConstraint
const BuildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.delete({
  where: {
    // ... filter to delete one BuildingRealmTraitConstraint
  }
})

Input

Name Type Required
where BuildingRealmTraitConstraintWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one BuildingRealmTraitConstraint

// Update one BuildingRealmTraitConstraint
const buildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BuildingRealmTraitConstraintUpdateInput | BuildingRealmTraitConstraintUncheckedUpdateInput Yes
where BuildingRealmTraitConstraintWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more BuildingRealmTraitConstraint

// Delete a few BuildingRealmTraitConstraint
const { count } = await prisma.buildingRealmTraitConstraint.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BuildingRealmTraitConstraintWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BuildingRealmTraitConstraint

const { count } = await prisma.buildingRealmTraitConstraint.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BuildingRealmTraitConstraintUpdateManyMutationInput | BuildingRealmTraitConstraintUncheckedUpdateManyInput Yes
where BuildingRealmTraitConstraintWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BuildingRealmTraitConstraint

// Update or create a BuildingRealmTraitConstraint
const buildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.upsert({
  create: {
    // ... data to create a BuildingRealmTraitConstraint
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BuildingRealmTraitConstraint we want to update
  }
})

Input

Name Type Required
where BuildingRealmTraitConstraintWhereUniqueInput Yes
create BuildingRealmTraitConstraintCreateInput | BuildingRealmTraitConstraintUncheckedCreateInput Yes
update BuildingRealmTraitConstraintUpdateInput | BuildingRealmTraitConstraintUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Resource

Name Value
@@unique
  • resourceId
  • realmId
@@index
  • resourceId
  • realmId

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
resourceId Int
  • -
Yes -
realmId Int?
  • -
No -
realm Realm?
  • -
No -
labor Labor?
  • -
No -
level Int
  • @default(0)
Yes -
upgrades String[]
  • -
Yes -

Operations

findUnique

Find zero or one Resource

// Get one Resource
const resource = await prisma.resource.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ResourceWhereUniqueInput Yes

Output

Type: Resource
Required: No
List: No

findFirst

Find first Resource

// Get one Resource
const resource = await prisma.resource.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ResourceWhereInput No
orderBy ResourceOrderByWithRelationInput[] | ResourceOrderByWithRelationInput No
cursor ResourceWhereUniqueInput No
take Int No
skip Int No
distinct ResourceScalarFieldEnum[] No

Output

Type: Resource
Required: No
List: No

findMany

Find zero or more Resource

// Get all Resource
const Resource = await prisma.resource.findMany()
// Get first 10 Resource
const Resource = await prisma.resource.findMany({ take: 10 })

Input

Name Type Required
where ResourceWhereInput No
orderBy ResourceOrderByWithRelationInput[] | ResourceOrderByWithRelationInput No
cursor ResourceWhereUniqueInput No
take Int No
skip Int No
distinct ResourceScalarFieldEnum[] No

Output

Type: Resource
Required: Yes
List: Yes

create

Create one Resource

// Create one Resource
const Resource = await prisma.resource.create({
  data: {
    // ... data to create a Resource
  }
})

Input

Name Type Required
data ResourceCreateInput | ResourceUncheckedCreateInput Yes

Output

Type: Resource
Required: Yes
List: No

delete

Delete one Resource

// Delete one Resource
const Resource = await prisma.resource.delete({
  where: {
    // ... filter to delete one Resource
  }
})

Input

Name Type Required
where ResourceWhereUniqueInput Yes

Output

Type: Resource
Required: No
List: No

update

Update one Resource

// Update one Resource
const resource = await prisma.resource.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ResourceUpdateInput | ResourceUncheckedUpdateInput Yes
where ResourceWhereUniqueInput Yes

Output

Type: Resource
Required: No
List: No

deleteMany

Delete zero or more Resource

// Delete a few Resource
const { count } = await prisma.resource.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ResourceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Resource

const { count } = await prisma.resource.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ResourceUpdateManyMutationInput | ResourceUncheckedUpdateManyInput Yes
where ResourceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Resource

// Update or create a Resource
const resource = await prisma.resource.upsert({
  create: {
    // ... data to create a Resource
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Resource we want to update
  }
})

Input

Name Type Required
where ResourceWhereUniqueInput Yes
create ResourceCreateInput | ResourceUncheckedCreateInput Yes
update ResourceUpdateInput | ResourceUncheckedUpdateInput Yes

Output

Type: Resource
Required: Yes
List: No

Labor

Name Value
@@unique
  • realmId
  • resourceId
@@index
  • realmId
  • resourceId

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
realmId Int
  • -
Yes -
resourceId Int
  • -
Yes -
vaultBalance DateTime?
  • -
No -
balance DateTime?
  • -
No -
lastUpdate DateTime?
  • -
No -
lastEventId String?
  • -
No -
qtyBuilt Int
  • @default(0)
Yes -
createdAt DateTime
  • -
Yes -
updatedAt DateTime
  • -
Yes -
resoure Resource
  • -
Yes -

Operations

findUnique

Find zero or one Labor

// Get one Labor
const labor = await prisma.labor.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LaborWhereUniqueInput Yes

Output

Type: Labor
Required: No
List: No

findFirst

Find first Labor

// Get one Labor
const labor = await prisma.labor.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LaborWhereInput No
orderBy LaborOrderByWithRelationInput[] | LaborOrderByWithRelationInput No
cursor LaborWhereUniqueInput No
take Int No
skip Int No
distinct LaborScalarFieldEnum[] No

Output

Type: Labor
Required: No
List: No

findMany

Find zero or more Labor

// Get all Labor
const Labor = await prisma.labor.findMany()
// Get first 10 Labor
const Labor = await prisma.labor.findMany({ take: 10 })

Input

Name Type Required
where LaborWhereInput No
orderBy LaborOrderByWithRelationInput[] | LaborOrderByWithRelationInput No
cursor LaborWhereUniqueInput No
take Int No
skip Int No
distinct LaborScalarFieldEnum[] No

Output

Type: Labor
Required: Yes
List: Yes

create

Create one Labor

// Create one Labor
const Labor = await prisma.labor.create({
  data: {
    // ... data to create a Labor
  }
})

Input

Name Type Required
data LaborCreateInput | LaborUncheckedCreateInput Yes

Output

Type: Labor
Required: Yes
List: No

delete

Delete one Labor

// Delete one Labor
const Labor = await prisma.labor.delete({
  where: {
    // ... filter to delete one Labor
  }
})

Input

Name Type Required
where LaborWhereUniqueInput Yes

Output

Type: Labor
Required: No
List: No

update

Update one Labor

// Update one Labor
const labor = await prisma.labor.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LaborUpdateInput | LaborUncheckedUpdateInput Yes
where LaborWhereUniqueInput Yes

Output

Type: Labor
Required: No
List: No

deleteMany

Delete zero or more Labor

// Delete a few Labor
const { count } = await prisma.labor.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LaborWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Labor

const { count } = await prisma.labor.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LaborUpdateManyMutationInput | LaborUncheckedUpdateManyInput Yes
where LaborWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Labor

// Update or create a Labor
const labor = await prisma.labor.upsert({
  create: {
    // ... data to create a Labor
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Labor we want to update
  }
})

Input

Name Type Required
where LaborWhereUniqueInput Yes
create LaborCreateInput | LaborUncheckedCreateInput Yes
update LaborUpdateInput | LaborUncheckedUpdateInput Yes

Output

Type: Labor
Required: Yes
List: No

WalletBalance

Name Value
@@unique
  • address
  • tokenId
@@index
  • address
  • tokenId

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
address String
  • -
Yes -
tokenId Int
  • -
Yes -
amount String
  • @default(0)
Yes -
lastEventId String?
  • -
No -

Operations

findUnique

Find zero or one WalletBalance

// Get one WalletBalance
const walletBalance = await prisma.walletBalance.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where WalletBalanceWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first WalletBalance

// Get one WalletBalance
const walletBalance = await prisma.walletBalance.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where WalletBalanceWhereInput No
orderBy WalletBalanceOrderByWithRelationInput[] | WalletBalanceOrderByWithRelationInput No
cursor WalletBalanceWhereUniqueInput No
take Int No
skip Int No
distinct WalletBalanceScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more WalletBalance

// Get all WalletBalance
const WalletBalance = await prisma.walletBalance.findMany()
// Get first 10 WalletBalance
const WalletBalance = await prisma.walletBalance.findMany({ take: 10 })

Input

Name Type Required
where WalletBalanceWhereInput No
orderBy WalletBalanceOrderByWithRelationInput[] | WalletBalanceOrderByWithRelationInput No
cursor WalletBalanceWhereUniqueInput No
take Int No
skip Int No
distinct WalletBalanceScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one WalletBalance

// Create one WalletBalance
const WalletBalance = await prisma.walletBalance.create({
  data: {
    // ... data to create a WalletBalance
  }
})

Input

Name Type Required
data WalletBalanceCreateInput | WalletBalanceUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one WalletBalance

// Delete one WalletBalance
const WalletBalance = await prisma.walletBalance.delete({
  where: {
    // ... filter to delete one WalletBalance
  }
})

Input

Name Type Required
where WalletBalanceWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one WalletBalance

// Update one WalletBalance
const walletBalance = await prisma.walletBalance.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data WalletBalanceUpdateInput | WalletBalanceUncheckedUpdateInput Yes
where WalletBalanceWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more WalletBalance

// Delete a few WalletBalance
const { count } = await prisma.walletBalance.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where WalletBalanceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one WalletBalance

const { count } = await prisma.walletBalance.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data WalletBalanceUpdateManyMutationInput | WalletBalanceUncheckedUpdateManyInput Yes
where WalletBalanceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one WalletBalance

// Update or create a WalletBalance
const walletBalance = await prisma.walletBalance.upsert({
  create: {
    // ... data to create a WalletBalance
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the WalletBalance we want to update
  }
})

Input

Name Type Required
where WalletBalanceWhereUniqueInput Yes
create WalletBalanceCreateInput | WalletBalanceUncheckedCreateInput Yes
update WalletBalanceUpdateInput | WalletBalanceUncheckedUpdateInput Yes

Output

Required: Yes
List: No

RealmTrait

Name Value
@@unique
  • type
  • realmId
@@index
  • type
  • realmId

Fields

Name Type Attributes Required Comment
type RealmTraitType
  • -
Yes -
qty Int
  • -
Yes -
realmId Int
  • -
Yes -
realm Realm?
  • -
No -

Operations

findUnique

Find zero or one RealmTrait

// Get one RealmTrait
const realmTrait = await prisma.realmTrait.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RealmTraitWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first RealmTrait

// Get one RealmTrait
const realmTrait = await prisma.realmTrait.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RealmTraitWhereInput No
orderBy RealmTraitOrderByWithRelationInput[] | RealmTraitOrderByWithRelationInput No
cursor RealmTraitWhereUniqueInput No
take Int No
skip Int No
distinct RealmTraitScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more RealmTrait

// Get all RealmTrait
const RealmTrait = await prisma.realmTrait.findMany()
// Get first 10 RealmTrait
const RealmTrait = await prisma.realmTrait.findMany({ take: 10 })

Input

Name Type Required
where RealmTraitWhereInput No
orderBy RealmTraitOrderByWithRelationInput[] | RealmTraitOrderByWithRelationInput No
cursor RealmTraitWhereUniqueInput No
take Int No
skip Int No
distinct RealmTraitScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one RealmTrait

// Create one RealmTrait
const RealmTrait = await prisma.realmTrait.create({
  data: {
    // ... data to create a RealmTrait
  }
})

Input

Name Type Required
data RealmTraitCreateInput | RealmTraitUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one RealmTrait

// Delete one RealmTrait
const RealmTrait = await prisma.realmTrait.delete({
  where: {
    // ... filter to delete one RealmTrait
  }
})

Input

Name Type Required
where RealmTraitWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one RealmTrait

// Update one RealmTrait
const realmTrait = await prisma.realmTrait.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RealmTraitUpdateInput | RealmTraitUncheckedUpdateInput Yes
where RealmTraitWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more RealmTrait

// Delete a few RealmTrait
const { count } = await prisma.realmTrait.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RealmTraitWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one RealmTrait

const { count } = await prisma.realmTrait.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RealmTraitUpdateManyMutationInput | RealmTraitUncheckedUpdateManyInput Yes
where RealmTraitWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one RealmTrait

// Update or create a RealmTrait
const realmTrait = await prisma.realmTrait.upsert({
  create: {
    // ... data to create a RealmTrait
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the RealmTrait we want to update
  }
})

Input

Name Type Required
where RealmTraitWhereUniqueInput Yes
create RealmTraitCreateInput | RealmTraitUncheckedCreateInput Yes
update RealmTraitUpdateInput | RealmTraitUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Troop

Name Value
@@unique
  • realmId
  • index
  • squadSlot
@@index
  • realmId
  • index
  • squadSlot

Fields

Name Type Attributes Required Comment
realmId Int
  • -
Yes -
troopId Int
  • -
Yes -
index Int
  • -
Yes -
type Int
  • @default(0)
Yes -
tier Int
  • @default(0)
Yes -
building Int
  • @default(0)
Yes -
agility Int
  • @default(0)
Yes -
attack Int
  • @default(0)
Yes -
armor Int
  • @default(0)
Yes -
vitality Int
  • @default(0)
Yes -
wisdom Int
  • @default(0)
Yes -
squadSlot Int
  • -
Yes -
timestamp DateTime?
  • -
No -
Realm Realm
  • -
Yes -

Operations

findUnique

Find zero or one Troop

// Get one Troop
const troop = await prisma.troop.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TroopWhereUniqueInput Yes

Output

Type: Troop
Required: No
List: No

findFirst

Find first Troop

// Get one Troop
const troop = await prisma.troop.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TroopWhereInput No
orderBy TroopOrderByWithRelationInput[] | TroopOrderByWithRelationInput No
cursor TroopWhereUniqueInput No
take Int No
skip Int No
distinct TroopScalarFieldEnum[] No

Output

Type: Troop
Required: No
List: No

findMany

Find zero or more Troop

// Get all Troop
const Troop = await prisma.troop.findMany()
// Get first 10 Troop
const Troop = await prisma.troop.findMany({ take: 10 })

Input

Name Type Required
where TroopWhereInput No
orderBy TroopOrderByWithRelationInput[] | TroopOrderByWithRelationInput No
cursor TroopWhereUniqueInput No
take Int No
skip Int No
distinct TroopScalarFieldEnum[] No

Output

Type: Troop
Required: Yes
List: Yes

create

Create one Troop

// Create one Troop
const Troop = await prisma.troop.create({
  data: {
    // ... data to create a Troop
  }
})

Input

Name Type Required
data TroopCreateInput | TroopUncheckedCreateInput Yes

Output

Type: Troop
Required: Yes
List: No

delete

Delete one Troop

// Delete one Troop
const Troop = await prisma.troop.delete({
  where: {
    // ... filter to delete one Troop
  }
})

Input

Name Type Required
where TroopWhereUniqueInput Yes

Output

Type: Troop
Required: No
List: No

update

Update one Troop

// Update one Troop
const troop = await prisma.troop.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TroopUpdateInput | TroopUncheckedUpdateInput Yes
where TroopWhereUniqueInput Yes

Output

Type: Troop
Required: No
List: No

deleteMany

Delete zero or more Troop

// Delete a few Troop
const { count } = await prisma.troop.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TroopWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Troop

const { count } = await prisma.troop.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TroopUpdateManyMutationInput | TroopUncheckedUpdateManyInput Yes
where TroopWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Troop

// Update or create a Troop
const troop = await prisma.troop.upsert({
  create: {
    // ... data to create a Troop
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Troop we want to update
  }
})

Input

Name Type Required
where TroopWhereUniqueInput Yes
create TroopCreateInput | TroopUncheckedCreateInput Yes
update TroopUpdateInput | TroopUncheckedUpdateInput Yes

Output

Type: Troop
Required: Yes
List: No

Desiege

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
gameId Int
  • @unique
Yes -
winner Int?
  • -
No -
attackedTokens Int?
  • -
No -
defendedTokens Int?
  • -
No -
damageInflicted Int?
  • @default(0)
No -
eventIndexed String?
  • -
No -
initialHealth Int?
  • @default(0)
No -
startBlock Int
  • @default(0)
Yes -
endBlock Int
  • @default(0)
Yes -
startedOn DateTime?
  • -
No -

Operations

findUnique

Find zero or one Desiege

// Get one Desiege
const desiege = await prisma.desiege.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DesiegeWhereUniqueInput Yes

Output

Type: Desiege
Required: No
List: No

findFirst

Find first Desiege

// Get one Desiege
const desiege = await prisma.desiege.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DesiegeWhereInput No
orderBy DesiegeOrderByWithRelationInput[] | DesiegeOrderByWithRelationInput No
cursor DesiegeWhereUniqueInput No
take Int No
skip Int No
distinct DesiegeScalarFieldEnum[] No

Output

Type: Desiege
Required: No
List: No

findMany

Find zero or more Desiege

// Get all Desiege
const Desiege = await prisma.desiege.findMany()
// Get first 10 Desiege
const Desiege = await prisma.desiege.findMany({ take: 10 })

Input

Name Type Required
where DesiegeWhereInput No
orderBy DesiegeOrderByWithRelationInput[] | DesiegeOrderByWithRelationInput No
cursor DesiegeWhereUniqueInput No
take Int No
skip Int No
distinct DesiegeScalarFieldEnum[] No

Output

Type: Desiege
Required: Yes
List: Yes

create

Create one Desiege

// Create one Desiege
const Desiege = await prisma.desiege.create({
  data: {
    // ... data to create a Desiege
  }
})

Input

Name Type Required
data DesiegeCreateInput | DesiegeUncheckedCreateInput Yes

Output

Type: Desiege
Required: Yes
List: No

delete

Delete one Desiege

// Delete one Desiege
const Desiege = await prisma.desiege.delete({
  where: {
    // ... filter to delete one Desiege
  }
})

Input

Name Type Required
where DesiegeWhereUniqueInput Yes

Output

Type: Desiege
Required: No
List: No

update

Update one Desiege

// Update one Desiege
const desiege = await prisma.desiege.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DesiegeUpdateInput | DesiegeUncheckedUpdateInput Yes
where DesiegeWhereUniqueInput Yes

Output

Type: Desiege
Required: No
List: No

deleteMany

Delete zero or more Desiege

// Delete a few Desiege
const { count } = await prisma.desiege.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DesiegeWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Desiege

const { count } = await prisma.desiege.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DesiegeUpdateManyMutationInput | DesiegeUncheckedUpdateManyInput Yes
where DesiegeWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Desiege

// Update or create a Desiege
const desiege = await prisma.desiege.upsert({
  create: {
    // ... data to create a Desiege
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Desiege we want to update
  }
})

Input

Name Type Required
where DesiegeWhereUniqueInput Yes
create DesiegeCreateInput | DesiegeUncheckedCreateInput Yes
update DesiegeUpdateInput | DesiegeUncheckedUpdateInput Yes

Output

Type: Desiege
Required: Yes
List: No

DesiegeAction

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
gameId Int
  • -
Yes -
account String
  • -
Yes -
amount Int
  • -
Yes -
amountBoosted Int
  • -
Yes -
tokenOffset Int
  • -
Yes -

Operations

findUnique

Find zero or one DesiegeAction

// Get one DesiegeAction
const desiegeAction = await prisma.desiegeAction.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DesiegeActionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first DesiegeAction

// Get one DesiegeAction
const desiegeAction = await prisma.desiegeAction.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DesiegeActionWhereInput No
orderBy DesiegeActionOrderByWithRelationInput[] | DesiegeActionOrderByWithRelationInput No
cursor DesiegeActionWhereUniqueInput No
take Int No
skip Int No
distinct DesiegeActionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more DesiegeAction

// Get all DesiegeAction
const DesiegeAction = await prisma.desiegeAction.findMany()
// Get first 10 DesiegeAction
const DesiegeAction = await prisma.desiegeAction.findMany({ take: 10 })

Input

Name Type Required
where DesiegeActionWhereInput No
orderBy DesiegeActionOrderByWithRelationInput[] | DesiegeActionOrderByWithRelationInput No
cursor DesiegeActionWhereUniqueInput No
take Int No
skip Int No
distinct DesiegeActionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one DesiegeAction

// Create one DesiegeAction
const DesiegeAction = await prisma.desiegeAction.create({
  data: {
    // ... data to create a DesiegeAction
  }
})

Input

Name Type Required
data DesiegeActionCreateInput | DesiegeActionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one DesiegeAction

// Delete one DesiegeAction
const DesiegeAction = await prisma.desiegeAction.delete({
  where: {
    // ... filter to delete one DesiegeAction
  }
})

Input

Name Type Required
where DesiegeActionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one DesiegeAction

// Update one DesiegeAction
const desiegeAction = await prisma.desiegeAction.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DesiegeActionUpdateInput | DesiegeActionUncheckedUpdateInput Yes
where DesiegeActionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more DesiegeAction

// Delete a few DesiegeAction
const { count } = await prisma.desiegeAction.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DesiegeActionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one DesiegeAction

const { count } = await prisma.desiegeAction.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DesiegeActionUpdateManyMutationInput | DesiegeActionUncheckedUpdateManyInput Yes
where DesiegeActionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one DesiegeAction

// Update or create a DesiegeAction
const desiegeAction = await prisma.desiegeAction.upsert({
  create: {
    // ... data to create a DesiegeAction
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the DesiegeAction we want to update
  }
})

Input

Name Type Required
where DesiegeActionWhereUniqueInput Yes
create DesiegeActionCreateInput | DesiegeActionUncheckedCreateInput Yes
update DesiegeActionUpdateInput | DesiegeActionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Event

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
eventId String
  • @unique
Yes -
blockNumber Int
  • @default(0)
Yes -
transactionNumber Int
  • @default(0)
Yes -
chainId String
  • -
Yes -
contract String
  • -
Yes -
name String
  • -
Yes -
parameters String[]
  • -
Yes -
keys String[]
  • -
Yes -
timestamp DateTime
  • -
Yes -
txHash String
  • -
Yes -
status Int
  • @default(0)
Yes -

Operations

findUnique

Find zero or one Event

// Get one Event
const event = await prisma.event.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventWhereUniqueInput Yes

Output

Type: Event
Required: No
List: No

findFirst

Find first Event

// Get one Event
const event = await prisma.event.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventWhereInput No
orderBy EventOrderByWithRelationInput[] | EventOrderByWithRelationInput No
cursor EventWhereUniqueInput No
take Int No
skip Int No
distinct EventScalarFieldEnum[] No

Output

Type: Event
Required: No
List: No

findMany

Find zero or more Event

// Get all Event
const Event = await prisma.event.findMany()
// Get first 10 Event
const Event = await prisma.event.findMany({ take: 10 })

Input

Name Type Required
where EventWhereInput No
orderBy EventOrderByWithRelationInput[] | EventOrderByWithRelationInput No
cursor EventWhereUniqueInput No
take Int No
skip Int No
distinct EventScalarFieldEnum[] No

Output

Type: Event
Required: Yes
List: Yes

create

Create one Event

// Create one Event
const Event = await prisma.event.create({
  data: {
    // ... data to create a Event
  }
})

Input

Name Type Required
data EventCreateInput | EventUncheckedCreateInput Yes

Output

Type: Event
Required: Yes
List: No

delete

Delete one Event

// Delete one Event
const Event = await prisma.event.delete({
  where: {
    // ... filter to delete one Event
  }
})

Input

Name Type Required
where EventWhereUniqueInput Yes

Output

Type: Event
Required: No
List: No

update

Update one Event

// Update one Event
const event = await prisma.event.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EventUpdateInput | EventUncheckedUpdateInput Yes
where EventWhereUniqueInput Yes

Output

Type: Event
Required: No
List: No

deleteMany

Delete zero or more Event

// Delete a few Event
const { count } = await prisma.event.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Event

const { count } = await prisma.event.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EventUpdateManyMutationInput | EventUncheckedUpdateManyInput Yes
where EventWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Event

// Update or create a Event
const event = await prisma.event.upsert({
  create: {
    // ... data to create a Event
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Event we want to update
  }
})

Input

Name Type Required
where EventWhereUniqueInput Yes
create EventCreateInput | EventUncheckedCreateInput Yes
update EventUpdateInput | EventUncheckedUpdateInput Yes

Output

Type: Event
Required: Yes
List: No

LastIndexedEvent

Fields

Name Type Attributes Required Comment
moduleName String
  • @id
Yes -
eventId String
  • -
Yes -

Operations

findUnique

Find zero or one LastIndexedEvent

// Get one LastIndexedEvent
const lastIndexedEvent = await prisma.lastIndexedEvent.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LastIndexedEventWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first LastIndexedEvent

// Get one LastIndexedEvent
const lastIndexedEvent = await prisma.lastIndexedEvent.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LastIndexedEventWhereInput No
orderBy LastIndexedEventOrderByWithRelationInput[] | LastIndexedEventOrderByWithRelationInput No
cursor LastIndexedEventWhereUniqueInput No
take Int No
skip Int No
distinct LastIndexedEventScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more LastIndexedEvent

// Get all LastIndexedEvent
const LastIndexedEvent = await prisma.lastIndexedEvent.findMany()
// Get first 10 LastIndexedEvent
const LastIndexedEvent = await prisma.lastIndexedEvent.findMany({ take: 10 })

Input

Name Type Required
where LastIndexedEventWhereInput No
orderBy LastIndexedEventOrderByWithRelationInput[] | LastIndexedEventOrderByWithRelationInput No
cursor LastIndexedEventWhereUniqueInput No
take Int No
skip Int No
distinct LastIndexedEventScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one LastIndexedEvent

// Create one LastIndexedEvent
const LastIndexedEvent = await prisma.lastIndexedEvent.create({
  data: {
    // ... data to create a LastIndexedEvent
  }
})

Input

Name Type Required
data LastIndexedEventCreateInput | LastIndexedEventUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one LastIndexedEvent

// Delete one LastIndexedEvent
const LastIndexedEvent = await prisma.lastIndexedEvent.delete({
  where: {
    // ... filter to delete one LastIndexedEvent
  }
})

Input

Name Type Required
where LastIndexedEventWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one LastIndexedEvent

// Update one LastIndexedEvent
const lastIndexedEvent = await prisma.lastIndexedEvent.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LastIndexedEventUpdateInput | LastIndexedEventUncheckedUpdateInput Yes
where LastIndexedEventWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more LastIndexedEvent

// Delete a few LastIndexedEvent
const { count } = await prisma.lastIndexedEvent.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LastIndexedEventWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one LastIndexedEvent

const { count } = await prisma.lastIndexedEvent.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LastIndexedEventUpdateManyMutationInput | LastIndexedEventUncheckedUpdateManyInput Yes
where LastIndexedEventWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one LastIndexedEvent

// Update or create a LastIndexedEvent
const lastIndexedEvent = await prisma.lastIndexedEvent.upsert({
  create: {
    // ... data to create a LastIndexedEvent
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the LastIndexedEvent we want to update
  }
})

Input

Name Type Required
where LastIndexedEventWhereUniqueInput Yes
create LastIndexedEventCreateInput | LastIndexedEventUncheckedCreateInput Yes
update LastIndexedEventUpdateInput | LastIndexedEventUncheckedUpdateInput Yes

Output

Required: Yes
List: No

LoreEntity

Fields

Name Type Attributes Required Comment
id Int
  • @id
Yes -
owner String?
  • -
No -
ownerDisplayName String?
  • -
No -
kind Int
  • @default(0)
Yes -
eventIndexed String?
  • -
No -
revisions LoreEntityRevision[]
  • -
Yes -

Operations

findUnique

Find zero or one LoreEntity

// Get one LoreEntity
const loreEntity = await prisma.loreEntity.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LoreEntityWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first LoreEntity

// Get one LoreEntity
const loreEntity = await prisma.loreEntity.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LoreEntityWhereInput No
orderBy LoreEntityOrderByWithRelationInput[] | LoreEntityOrderByWithRelationInput No
cursor LoreEntityWhereUniqueInput No
take Int No
skip Int No
distinct LoreEntityScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more LoreEntity

// Get all LoreEntity
const LoreEntity = await prisma.loreEntity.findMany()
// Get first 10 LoreEntity
const LoreEntity = await prisma.loreEntity.findMany({ take: 10 })

Input

Name Type Required
where LoreEntityWhereInput No
orderBy LoreEntityOrderByWithRelationInput[] | LoreEntityOrderByWithRelationInput No
cursor LoreEntityWhereUniqueInput No
take Int No
skip Int No
distinct LoreEntityScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one LoreEntity

// Create one LoreEntity
const LoreEntity = await prisma.loreEntity.create({
  data: {
    // ... data to create a LoreEntity
  }
})

Input

Name Type Required
data LoreEntityCreateInput | LoreEntityUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one LoreEntity

// Delete one LoreEntity
const LoreEntity = await prisma.loreEntity.delete({
  where: {
    // ... filter to delete one LoreEntity
  }
})

Input

Name Type Required
where LoreEntityWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one LoreEntity

// Update one LoreEntity
const loreEntity = await prisma.loreEntity.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LoreEntityUpdateInput | LoreEntityUncheckedUpdateInput Yes
where LoreEntityWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more LoreEntity

// Delete a few LoreEntity
const { count } = await prisma.loreEntity.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LoreEntityWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one LoreEntity

const { count } = await prisma.loreEntity.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LoreEntityUpdateManyMutationInput | LoreEntityUncheckedUpdateManyInput Yes
where LoreEntityWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one LoreEntity

// Update or create a LoreEntity
const loreEntity = await prisma.loreEntity.upsert({
  create: {
    // ... data to create a LoreEntity
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the LoreEntity we want to update
  }
})

Input

Name Type Required
where LoreEntityWhereUniqueInput Yes
create LoreEntityCreateInput | LoreEntityUncheckedCreateInput Yes
update LoreEntityUpdateInput | LoreEntityUncheckedUpdateInput Yes

Output

Required: Yes
List: No

LoreEntityRevision

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
revisionNumber Int
  • -
Yes -
arweaveId String
  • -
Yes -
title String?
  • -
No -
markdown String?
  • -
No -
excerpt String?
  • -
No -
media_url String?
  • -
No -
createdAt DateTime?
  • @default(now())
No -
entity LoreEntity
  • -
Yes -
entityId Int
  • -
Yes -
eventIndexed String?
  • -
No -
pois LorePoisOnEntityRevisions[]
  • -
Yes -
props LorePropsOnEntityRevisions[]
  • -
Yes -

Operations

findUnique

Find zero or one LoreEntityRevision

// Get one LoreEntityRevision
const loreEntityRevision = await prisma.loreEntityRevision.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LoreEntityRevisionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first LoreEntityRevision

// Get one LoreEntityRevision
const loreEntityRevision = await prisma.loreEntityRevision.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LoreEntityRevisionWhereInput No
orderBy LoreEntityRevisionOrderByWithRelationInput[] | LoreEntityRevisionOrderByWithRelationInput No
cursor LoreEntityRevisionWhereUniqueInput No
take Int No
skip Int No
distinct LoreEntityRevisionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more LoreEntityRevision

// Get all LoreEntityRevision
const LoreEntityRevision = await prisma.loreEntityRevision.findMany()
// Get first 10 LoreEntityRevision
const LoreEntityRevision = await prisma.loreEntityRevision.findMany({ take: 10 })

Input

Name Type Required
where LoreEntityRevisionWhereInput No
orderBy LoreEntityRevisionOrderByWithRelationInput[] | LoreEntityRevisionOrderByWithRelationInput No
cursor LoreEntityRevisionWhereUniqueInput No
take Int No
skip Int No
distinct LoreEntityRevisionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one LoreEntityRevision

// Create one LoreEntityRevision
const LoreEntityRevision = await prisma.loreEntityRevision.create({
  data: {
    // ... data to create a LoreEntityRevision
  }
})

Input

Name Type Required
data LoreEntityRevisionCreateInput | LoreEntityRevisionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one LoreEntityRevision

// Delete one LoreEntityRevision
const LoreEntityRevision = await prisma.loreEntityRevision.delete({
  where: {
    // ... filter to delete one LoreEntityRevision
  }
})

Input

Name Type Required
where LoreEntityRevisionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one LoreEntityRevision

// Update one LoreEntityRevision
const loreEntityRevision = await prisma.loreEntityRevision.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LoreEntityRevisionUpdateInput | LoreEntityRevisionUncheckedUpdateInput Yes
where LoreEntityRevisionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more LoreEntityRevision

// Delete a few LoreEntityRevision
const { count } = await prisma.loreEntityRevision.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LoreEntityRevisionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one LoreEntityRevision

const { count } = await prisma.loreEntityRevision.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LoreEntityRevisionUpdateManyMutationInput | LoreEntityRevisionUncheckedUpdateManyInput Yes
where LoreEntityRevisionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one LoreEntityRevision

// Update or create a LoreEntityRevision
const loreEntityRevision = await prisma.loreEntityRevision.upsert({
  create: {
    // ... data to create a LoreEntityRevision
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the LoreEntityRevision we want to update
  }
})

Input

Name Type Required
where LoreEntityRevisionWhereUniqueInput Yes
create LoreEntityRevisionCreateInput | LoreEntityRevisionUncheckedCreateInput Yes
update LoreEntityRevisionUpdateInput | LoreEntityRevisionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

LorePOI

Fields

Name Type Attributes Required Comment
id Int
  • @id
Yes -
name String
  • -
Yes -
assetType String?
  • -
No -
entities LorePoisOnEntityRevisions[]
  • -
Yes -

Operations

findUnique

Find zero or one LorePOI

// Get one LorePOI
const lorePOI = await prisma.lorePOI.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LorePOIWhereUniqueInput Yes

Output

Type: LorePOI
Required: No
List: No

findFirst

Find first LorePOI

// Get one LorePOI
const lorePOI = await prisma.lorePOI.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LorePOIWhereInput No
orderBy LorePOIOrderByWithRelationInput[] | LorePOIOrderByWithRelationInput No
cursor LorePOIWhereUniqueInput No
take Int No
skip Int No
distinct LorePOIScalarFieldEnum[] No

Output

Type: LorePOI
Required: No
List: No

findMany

Find zero or more LorePOI

// Get all LorePOI
const LorePOI = await prisma.lorePOI.findMany()
// Get first 10 LorePOI
const LorePOI = await prisma.lorePOI.findMany({ take: 10 })

Input

Name Type Required
where LorePOIWhereInput No
orderBy LorePOIOrderByWithRelationInput[] | LorePOIOrderByWithRelationInput No
cursor LorePOIWhereUniqueInput No
take Int No
skip Int No
distinct LorePOIScalarFieldEnum[] No

Output

Type: LorePOI
Required: Yes
List: Yes

create

Create one LorePOI

// Create one LorePOI
const LorePOI = await prisma.lorePOI.create({
  data: {
    // ... data to create a LorePOI
  }
})

Input

Name Type Required
data LorePOICreateInput | LorePOIUncheckedCreateInput Yes

Output

Type: LorePOI
Required: Yes
List: No

delete

Delete one LorePOI

// Delete one LorePOI
const LorePOI = await prisma.lorePOI.delete({
  where: {
    // ... filter to delete one LorePOI
  }
})

Input

Name Type Required
where LorePOIWhereUniqueInput Yes

Output

Type: LorePOI
Required: No
List: No

update

Update one LorePOI

// Update one LorePOI
const lorePOI = await prisma.lorePOI.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LorePOIUpdateInput | LorePOIUncheckedUpdateInput Yes
where LorePOIWhereUniqueInput Yes

Output

Type: LorePOI
Required: No
List: No

deleteMany

Delete zero or more LorePOI

// Delete a few LorePOI
const { count } = await prisma.lorePOI.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LorePOIWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one LorePOI

const { count } = await prisma.lorePOI.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LorePOIUpdateManyMutationInput | LorePOIUncheckedUpdateManyInput Yes
where LorePOIWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one LorePOI

// Update or create a LorePOI
const lorePOI = await prisma.lorePOI.upsert({
  create: {
    // ... data to create a LorePOI
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the LorePOI we want to update
  }
})

Input

Name Type Required
where LorePOIWhereUniqueInput Yes
create LorePOICreateInput | LorePOIUncheckedCreateInput Yes
update LorePOIUpdateInput | LorePOIUncheckedUpdateInput Yes

Output

Type: LorePOI
Required: Yes
List: No

LoreProp

Fields

Name Type Attributes Required Comment
id Int
  • @id
Yes -
name String
  • -
Yes -
entities LorePropsOnEntityRevisions[]
  • -
Yes -

Operations

findUnique

Find zero or one LoreProp

// Get one LoreProp
const loreProp = await prisma.loreProp.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LorePropWhereUniqueInput Yes

Output

Type: LoreProp
Required: No
List: No

findFirst

Find first LoreProp

// Get one LoreProp
const loreProp = await prisma.loreProp.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LorePropWhereInput No
orderBy LorePropOrderByWithRelationInput[] | LorePropOrderByWithRelationInput No
cursor LorePropWhereUniqueInput No
take Int No
skip Int No
distinct LorePropScalarFieldEnum[] No

Output

Type: LoreProp
Required: No
List: No

findMany

Find zero or more LoreProp

// Get all LoreProp
const LoreProp = await prisma.loreProp.findMany()
// Get first 10 LoreProp
const LoreProp = await prisma.loreProp.findMany({ take: 10 })

Input

Name Type Required
where LorePropWhereInput No
orderBy LorePropOrderByWithRelationInput[] | LorePropOrderByWithRelationInput No
cursor LorePropWhereUniqueInput No
take Int No
skip Int No
distinct LorePropScalarFieldEnum[] No

Output

Type: LoreProp
Required: Yes
List: Yes

create

Create one LoreProp

// Create one LoreProp
const LoreProp = await prisma.loreProp.create({
  data: {
    // ... data to create a LoreProp
  }
})

Input

Name Type Required
data LorePropCreateInput | LorePropUncheckedCreateInput Yes

Output

Type: LoreProp
Required: Yes
List: No

delete

Delete one LoreProp

// Delete one LoreProp
const LoreProp = await prisma.loreProp.delete({
  where: {
    // ... filter to delete one LoreProp
  }
})

Input

Name Type Required
where LorePropWhereUniqueInput Yes

Output

Type: LoreProp
Required: No
List: No

update

Update one LoreProp

// Update one LoreProp
const loreProp = await prisma.loreProp.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LorePropUpdateInput | LorePropUncheckedUpdateInput Yes
where LorePropWhereUniqueInput Yes

Output

Type: LoreProp
Required: No
List: No

deleteMany

Delete zero or more LoreProp

// Delete a few LoreProp
const { count } = await prisma.loreProp.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LorePropWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one LoreProp

const { count } = await prisma.loreProp.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LorePropUpdateManyMutationInput | LorePropUncheckedUpdateManyInput Yes
where LorePropWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one LoreProp

// Update or create a LoreProp
const loreProp = await prisma.loreProp.upsert({
  create: {
    // ... data to create a LoreProp
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the LoreProp we want to update
  }
})

Input

Name Type Required
where LorePropWhereUniqueInput Yes
create LorePropCreateInput | LorePropUncheckedCreateInput Yes
update LorePropUpdateInput | LorePropUncheckedUpdateInput Yes

Output

Type: LoreProp
Required: Yes
List: No

LorePoisOnEntityRevisions

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
entityRevision LoreEntityRevision
  • -
Yes -
entityRevisionId Int
  • -
Yes -
poi LorePOI
  • -
Yes -
poiId Int
  • -
Yes -
assetId String?
  • -
No -

Operations

findUnique

Find zero or one LorePoisOnEntityRevisions

// Get one LorePoisOnEntityRevisions
const lorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LorePoisOnEntityRevisionsWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first LorePoisOnEntityRevisions

// Get one LorePoisOnEntityRevisions
const lorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LorePoisOnEntityRevisionsWhereInput No
orderBy LorePoisOnEntityRevisionsOrderByWithRelationInput[] | LorePoisOnEntityRevisionsOrderByWithRelationInput No
cursor LorePoisOnEntityRevisionsWhereUniqueInput No
take Int No
skip Int No
distinct LorePoisOnEntityRevisionsScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more LorePoisOnEntityRevisions

// Get all LorePoisOnEntityRevisions
const LorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.findMany()
// Get first 10 LorePoisOnEntityRevisions
const LorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.findMany({ take: 10 })

Input

Name Type Required
where LorePoisOnEntityRevisionsWhereInput No
orderBy LorePoisOnEntityRevisionsOrderByWithRelationInput[] | LorePoisOnEntityRevisionsOrderByWithRelationInput No
cursor LorePoisOnEntityRevisionsWhereUniqueInput No
take Int No
skip Int No
distinct LorePoisOnEntityRevisionsScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one LorePoisOnEntityRevisions

// Create one LorePoisOnEntityRevisions
const LorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.create({
  data: {
    // ... data to create a LorePoisOnEntityRevisions
  }
})

Input

Name Type Required
data LorePoisOnEntityRevisionsCreateInput | LorePoisOnEntityRevisionsUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one LorePoisOnEntityRevisions

// Delete one LorePoisOnEntityRevisions
const LorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.delete({
  where: {
    // ... filter to delete one LorePoisOnEntityRevisions
  }
})

Input

Name Type Required
where LorePoisOnEntityRevisionsWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one LorePoisOnEntityRevisions

// Update one LorePoisOnEntityRevisions
const lorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LorePoisOnEntityRevisionsUpdateInput | LorePoisOnEntityRevisionsUncheckedUpdateInput Yes
where LorePoisOnEntityRevisionsWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more LorePoisOnEntityRevisions

// Delete a few LorePoisOnEntityRevisions
const { count } = await prisma.lorePoisOnEntityRevisions.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LorePoisOnEntityRevisionsWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one LorePoisOnEntityRevisions

const { count } = await prisma.lorePoisOnEntityRevisions.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LorePoisOnEntityRevisionsUpdateManyMutationInput | LorePoisOnEntityRevisionsUncheckedUpdateManyInput Yes
where LorePoisOnEntityRevisionsWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one LorePoisOnEntityRevisions

// Update or create a LorePoisOnEntityRevisions
const lorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.upsert({
  create: {
    // ... data to create a LorePoisOnEntityRevisions
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the LorePoisOnEntityRevisions we want to update
  }
})

Input

Name Type Required
where LorePoisOnEntityRevisionsWhereUniqueInput Yes
create LorePoisOnEntityRevisionsCreateInput | LorePoisOnEntityRevisionsUncheckedCreateInput Yes
update LorePoisOnEntityRevisionsUpdateInput | LorePoisOnEntityRevisionsUncheckedUpdateInput Yes

Output

Required: Yes
List: No

LorePropsOnEntityRevisions

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
entityRevision LoreEntityRevision
  • -
Yes -
entityRevisionId Int
  • -
Yes -
prop LoreProp
  • -
Yes -
propId Int
  • -
Yes -
value String?
  • -
No -

Operations

findUnique

Find zero or one LorePropsOnEntityRevisions

// Get one LorePropsOnEntityRevisions
const lorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LorePropsOnEntityRevisionsWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first LorePropsOnEntityRevisions

// Get one LorePropsOnEntityRevisions
const lorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LorePropsOnEntityRevisionsWhereInput No
orderBy LorePropsOnEntityRevisionsOrderByWithRelationInput[] | LorePropsOnEntityRevisionsOrderByWithRelationInput No
cursor LorePropsOnEntityRevisionsWhereUniqueInput No
take Int No
skip Int No
distinct LorePropsOnEntityRevisionsScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more LorePropsOnEntityRevisions

// Get all LorePropsOnEntityRevisions
const LorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.findMany()
// Get first 10 LorePropsOnEntityRevisions
const LorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.findMany({ take: 10 })

Input

Name Type Required
where LorePropsOnEntityRevisionsWhereInput No
orderBy LorePropsOnEntityRevisionsOrderByWithRelationInput[] | LorePropsOnEntityRevisionsOrderByWithRelationInput No
cursor LorePropsOnEntityRevisionsWhereUniqueInput No
take Int No
skip Int No
distinct LorePropsOnEntityRevisionsScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one LorePropsOnEntityRevisions

// Create one LorePropsOnEntityRevisions
const LorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.create({
  data: {
    // ... data to create a LorePropsOnEntityRevisions
  }
})

Input

Name Type Required
data LorePropsOnEntityRevisionsCreateInput | LorePropsOnEntityRevisionsUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one LorePropsOnEntityRevisions

// Delete one LorePropsOnEntityRevisions
const LorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.delete({
  where: {
    // ... filter to delete one LorePropsOnEntityRevisions
  }
})

Input

Name Type Required
where LorePropsOnEntityRevisionsWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one LorePropsOnEntityRevisions

// Update one LorePropsOnEntityRevisions
const lorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LorePropsOnEntityRevisionsUpdateInput | LorePropsOnEntityRevisionsUncheckedUpdateInput Yes
where LorePropsOnEntityRevisionsWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more LorePropsOnEntityRevisions

// Delete a few LorePropsOnEntityRevisions
const { count } = await prisma.lorePropsOnEntityRevisions.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LorePropsOnEntityRevisionsWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one LorePropsOnEntityRevisions

const { count } = await prisma.lorePropsOnEntityRevisions.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LorePropsOnEntityRevisionsUpdateManyMutationInput | LorePropsOnEntityRevisionsUncheckedUpdateManyInput Yes
where LorePropsOnEntityRevisionsWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one LorePropsOnEntityRevisions

// Update or create a LorePropsOnEntityRevisions
const lorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.upsert({
  create: {
    // ... data to create a LorePropsOnEntityRevisions
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the LorePropsOnEntityRevisions we want to update
  }
})

Input

Name Type Required
where LorePropsOnEntityRevisionsWhereUniqueInput Yes
create LorePropsOnEntityRevisionsCreateInput | LorePropsOnEntityRevisionsUncheckedCreateInput Yes
update LorePropsOnEntityRevisionsUpdateInput | LorePropsOnEntityRevisionsUncheckedUpdateInput Yes

Output

Required: Yes
List: No

ExchangeRate

Name Value
@@id
  • date
  • hour
  • tokenId

Fields

Name Type Attributes Required Comment
date String
  • -
Yes -
hour Int
  • -
Yes -
tokenId Int
  • -
Yes -
amount String
  • @default()
Yes -
buyAmount String
  • @default()
Yes -
sellAmount String
  • @default()
Yes -
currencyReserve String
  • @default()
Yes -
tokenReserve String
  • @default()
Yes -
lpAmount String
  • @default()
Yes -

Operations

findUnique

Find zero or one ExchangeRate

// Get one ExchangeRate
const exchangeRate = await prisma.exchangeRate.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ExchangeRateWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ExchangeRate

// Get one ExchangeRate
const exchangeRate = await prisma.exchangeRate.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ExchangeRateWhereInput No
orderBy ExchangeRateOrderByWithRelationInput[] | ExchangeRateOrderByWithRelationInput No
cursor ExchangeRateWhereUniqueInput No
take Int No
skip Int No
distinct ExchangeRateScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ExchangeRate

// Get all ExchangeRate
const ExchangeRate = await prisma.exchangeRate.findMany()
// Get first 10 ExchangeRate
const ExchangeRate = await prisma.exchangeRate.findMany({ take: 10 })

Input

Name Type Required
where ExchangeRateWhereInput No
orderBy ExchangeRateOrderByWithRelationInput[] | ExchangeRateOrderByWithRelationInput No
cursor ExchangeRateWhereUniqueInput No
take Int No
skip Int No
distinct ExchangeRateScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ExchangeRate

// Create one ExchangeRate
const ExchangeRate = await prisma.exchangeRate.create({
  data: {
    // ... data to create a ExchangeRate
  }
})

Input

Name Type Required
data ExchangeRateCreateInput | ExchangeRateUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ExchangeRate

// Delete one ExchangeRate
const ExchangeRate = await prisma.exchangeRate.delete({
  where: {
    // ... filter to delete one ExchangeRate
  }
})

Input

Name Type Required
where ExchangeRateWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ExchangeRate

// Update one ExchangeRate
const exchangeRate = await prisma.exchangeRate.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ExchangeRateUpdateInput | ExchangeRateUncheckedUpdateInput Yes
where ExchangeRateWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ExchangeRate

// Delete a few ExchangeRate
const { count } = await prisma.exchangeRate.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ExchangeRateWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ExchangeRate

const { count } = await prisma.exchangeRate.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ExchangeRateUpdateManyMutationInput | ExchangeRateUncheckedUpdateManyInput Yes
where ExchangeRateWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ExchangeRate

// Update or create a ExchangeRate
const exchangeRate = await prisma.exchangeRate.upsert({
  create: {
    // ... data to create a ExchangeRate
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ExchangeRate we want to update
  }
})

Input

Name Type Required
where ExchangeRateWhereUniqueInput Yes
create ExchangeRateCreateInput | ExchangeRateUncheckedCreateInput Yes
update ExchangeRateUpdateInput | ExchangeRateUncheckedUpdateInput Yes

Output

Required: Yes
List: No

RealmHistory

Name Value
@@unique
  • eventId
  • eventType
@@index
  • eventId
  • eventType

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
eventId String
  • -
Yes -
eventType String
  • -
Yes -
realmId Int
  • -
Yes -
bastionId Int
  • @default(0)
Yes -
realmOwner String
  • @default()
Yes -
realmName String
  • @default()
Yes -
realmOrder OrderType?
  • -
No -
data Json
  • -
Yes -
timestamp DateTime
  • -
Yes -
transactionHash String
  • @default()
Yes -

Operations

findUnique

Find zero or one RealmHistory

// Get one RealmHistory
const realmHistory = await prisma.realmHistory.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RealmHistoryWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first RealmHistory

// Get one RealmHistory
const realmHistory = await prisma.realmHistory.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RealmHistoryWhereInput No
orderBy RealmHistoryOrderByWithRelationInput[] | RealmHistoryOrderByWithRelationInput No
cursor RealmHistoryWhereUniqueInput No
take Int No
skip Int No
distinct RealmHistoryScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more RealmHistory

// Get all RealmHistory
const RealmHistory = await prisma.realmHistory.findMany()
// Get first 10 RealmHistory
const RealmHistory = await prisma.realmHistory.findMany({ take: 10 })

Input

Name Type Required
where RealmHistoryWhereInput No
orderBy RealmHistoryOrderByWithRelationInput[] | RealmHistoryOrderByWithRelationInput No
cursor RealmHistoryWhereUniqueInput No
take Int No
skip Int No
distinct RealmHistoryScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one RealmHistory

// Create one RealmHistory
const RealmHistory = await prisma.realmHistory.create({
  data: {
    // ... data to create a RealmHistory
  }
})

Input

Name Type Required
data RealmHistoryCreateInput | RealmHistoryUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one RealmHistory

// Delete one RealmHistory
const RealmHistory = await prisma.realmHistory.delete({
  where: {
    // ... filter to delete one RealmHistory
  }
})

Input

Name Type Required
where RealmHistoryWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one RealmHistory

// Update one RealmHistory
const realmHistory = await prisma.realmHistory.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RealmHistoryUpdateInput | RealmHistoryUncheckedUpdateInput Yes
where RealmHistoryWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more RealmHistory

// Delete a few RealmHistory
const { count } = await prisma.realmHistory.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RealmHistoryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one RealmHistory

const { count } = await prisma.realmHistory.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RealmHistoryUpdateManyMutationInput | RealmHistoryUncheckedUpdateManyInput Yes
where RealmHistoryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one RealmHistory

// Update or create a RealmHistory
const realmHistory = await prisma.realmHistory.upsert({
  create: {
    // ... data to create a RealmHistory
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the RealmHistory we want to update
  }
})

Input

Name Type Required
where RealmHistoryWhereUniqueInput Yes
create RealmHistoryCreateInput | RealmHistoryUncheckedCreateInput Yes
update RealmHistoryUpdateInput | RealmHistoryUncheckedUpdateInput Yes

Output

Required: Yes
List: No

CombatHistory

Name Value
@@unique
  • defendRealmId
  • eventId
@@index
  • defendRealmId
  • eventId

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
eventId String
  • -
Yes -
eventType String
  • -
Yes -
attackRealmId Int
  • -
Yes -
attackRealmOwner String
  • -
Yes -
attackSquad Json
  • -
Yes -
defendRealmId Int
  • -
Yes -
defendRealmOwner String
  • -
Yes -
defendSquad Json
  • -
Yes -
timestamp DateTime
  • -
Yes -
transactionHash String
  • @default()
Yes -
outcome Int
  • @default(0)
Yes -
attackType Int
  • @default(0)
Yes -
hitPoints Int
  • @default(0)
Yes -

Operations

findUnique

Find zero or one CombatHistory

// Get one CombatHistory
const combatHistory = await prisma.combatHistory.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CombatHistoryWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first CombatHistory

// Get one CombatHistory
const combatHistory = await prisma.combatHistory.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CombatHistoryWhereInput No
orderBy CombatHistoryOrderByWithRelationInput[] | CombatHistoryOrderByWithRelationInput No
cursor CombatHistoryWhereUniqueInput No
take Int No
skip Int No
distinct CombatHistoryScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more CombatHistory

// Get all CombatHistory
const CombatHistory = await prisma.combatHistory.findMany()
// Get first 10 CombatHistory
const CombatHistory = await prisma.combatHistory.findMany({ take: 10 })

Input

Name Type Required
where CombatHistoryWhereInput No
orderBy CombatHistoryOrderByWithRelationInput[] | CombatHistoryOrderByWithRelationInput No
cursor CombatHistoryWhereUniqueInput No
take Int No
skip Int No
distinct CombatHistoryScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one CombatHistory

// Create one CombatHistory
const CombatHistory = await prisma.combatHistory.create({
  data: {
    // ... data to create a CombatHistory
  }
})

Input

Name Type Required
data CombatHistoryCreateInput | CombatHistoryUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one CombatHistory

// Delete one CombatHistory
const CombatHistory = await prisma.combatHistory.delete({
  where: {
    // ... filter to delete one CombatHistory
  }
})

Input

Name Type Required
where CombatHistoryWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one CombatHistory

// Update one CombatHistory
const combatHistory = await prisma.combatHistory.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CombatHistoryUpdateInput | CombatHistoryUncheckedUpdateInput Yes
where CombatHistoryWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more CombatHistory

// Delete a few CombatHistory
const { count } = await prisma.combatHistory.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CombatHistoryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one CombatHistory

const { count } = await prisma.combatHistory.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CombatHistoryUpdateManyMutationInput | CombatHistoryUncheckedUpdateManyInput Yes
where CombatHistoryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one CombatHistory

// Update or create a CombatHistory
const combatHistory = await prisma.combatHistory.upsert({
  create: {
    // ... data to create a CombatHistory
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the CombatHistory we want to update
  }
})

Input

Name Type Required
where CombatHistoryWhereUniqueInput Yes
create CombatHistoryCreateInput | CombatHistoryUncheckedCreateInput Yes
update CombatHistoryUpdateInput | CombatHistoryUncheckedUpdateInput Yes

Output

Required: Yes
List: No

ResourceTransfer

Name Value
@@unique
  • resourceId
  • eventId
@@index
  • resourceId
  • eventId

Fields

Name Type Attributes Required Comment
resourceId Int
  • -
Yes -
eventId String
  • -
Yes -
blockNumber Int
  • @default(0)
Yes -
transactionNumber Int
  • @default(0)
Yes -
operatorAddress String
  • @default()
Yes -
fromAddress String
  • -
Yes -
toAddress String
  • -
Yes -
amount String
  • -
Yes -
amountValue Decimal
  • @default(0)
Yes -
transactionHash String
  • @default()
Yes -
timestamp DateTime
  • -
Yes -

Operations

findUnique

Find zero or one ResourceTransfer

// Get one ResourceTransfer
const resourceTransfer = await prisma.resourceTransfer.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ResourceTransferWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ResourceTransfer

// Get one ResourceTransfer
const resourceTransfer = await prisma.resourceTransfer.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ResourceTransferWhereInput No
orderBy ResourceTransferOrderByWithRelationInput[] | ResourceTransferOrderByWithRelationInput No
cursor ResourceTransferWhereUniqueInput No
take Int No
skip Int No
distinct ResourceTransferScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ResourceTransfer

// Get all ResourceTransfer
const ResourceTransfer = await prisma.resourceTransfer.findMany()
// Get first 10 ResourceTransfer
const ResourceTransfer = await prisma.resourceTransfer.findMany({ take: 10 })

Input

Name Type Required
where ResourceTransferWhereInput No
orderBy ResourceTransferOrderByWithRelationInput[] | ResourceTransferOrderByWithRelationInput No
cursor ResourceTransferWhereUniqueInput No
take Int No
skip Int No
distinct ResourceTransferScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ResourceTransfer

// Create one ResourceTransfer
const ResourceTransfer = await prisma.resourceTransfer.create({
  data: {
    // ... data to create a ResourceTransfer
  }
})

Input

Name Type Required
data ResourceTransferCreateInput | ResourceTransferUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ResourceTransfer

// Delete one ResourceTransfer
const ResourceTransfer = await prisma.resourceTransfer.delete({
  where: {
    // ... filter to delete one ResourceTransfer
  }
})

Input

Name Type Required
where ResourceTransferWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ResourceTransfer

// Update one ResourceTransfer
const resourceTransfer = await prisma.resourceTransfer.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ResourceTransferUpdateInput | ResourceTransferUncheckedUpdateInput Yes
where ResourceTransferWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ResourceTransfer

// Delete a few ResourceTransfer
const { count } = await prisma.resourceTransfer.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ResourceTransferWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ResourceTransfer

const { count } = await prisma.resourceTransfer.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ResourceTransferUpdateManyMutationInput | ResourceTransferUncheckedUpdateManyInput Yes
where ResourceTransferWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ResourceTransfer

// Update or create a ResourceTransfer
const resourceTransfer = await prisma.resourceTransfer.upsert({
  create: {
    // ... data to create a ResourceTransfer
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ResourceTransfer we want to update
  }
})

Input

Name Type Required
where ResourceTransferWhereUniqueInput Yes
create ResourceTransferCreateInput | ResourceTransferUncheckedCreateInput Yes
update ResourceTransferUpdateInput | ResourceTransferUncheckedUpdateInput Yes

Output

Required: Yes
List: No

LordTransfer

Fields

Name Type Attributes Required Comment
eventId String
  • @id
Yes -
blockNumber Int
  • @default(0)
Yes -
transactionNumber Int
  • @default(0)
Yes -
fromAddress String
  • -
Yes -
toAddress String
  • -
Yes -
amount String
  • -
Yes -
amountValue Decimal
  • @default(0)
Yes -
transactionHash String
  • @default()
Yes -
timestamp DateTime
  • -
Yes -

Operations

findUnique

Find zero or one LordTransfer

// Get one LordTransfer
const lordTransfer = await prisma.lordTransfer.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LordTransferWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first LordTransfer

// Get one LordTransfer
const lordTransfer = await prisma.lordTransfer.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LordTransferWhereInput No
orderBy LordTransferOrderByWithRelationInput[] | LordTransferOrderByWithRelationInput No
cursor LordTransferWhereUniqueInput No
take Int No
skip Int No
distinct LordTransferScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more LordTransfer

// Get all LordTransfer
const LordTransfer = await prisma.lordTransfer.findMany()
// Get first 10 LordTransfer
const LordTransfer = await prisma.lordTransfer.findMany({ take: 10 })

Input

Name Type Required
where LordTransferWhereInput No
orderBy LordTransferOrderByWithRelationInput[] | LordTransferOrderByWithRelationInput No
cursor LordTransferWhereUniqueInput No
take Int No
skip Int No
distinct LordTransferScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one LordTransfer

// Create one LordTransfer
const LordTransfer = await prisma.lordTransfer.create({
  data: {
    // ... data to create a LordTransfer
  }
})

Input

Name Type Required
data LordTransferCreateInput | LordTransferUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one LordTransfer

// Delete one LordTransfer
const LordTransfer = await prisma.lordTransfer.delete({
  where: {
    // ... filter to delete one LordTransfer
  }
})

Input

Name Type Required
where LordTransferWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one LordTransfer

// Update one LordTransfer
const lordTransfer = await prisma.lordTransfer.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LordTransferUpdateInput | LordTransferUncheckedUpdateInput Yes
where LordTransferWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more LordTransfer

// Delete a few LordTransfer
const { count } = await prisma.lordTransfer.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LordTransferWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one LordTransfer

const { count } = await prisma.lordTransfer.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LordTransferUpdateManyMutationInput | LordTransferUncheckedUpdateManyInput Yes
where LordTransferWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one LordTransfer

// Update or create a LordTransfer
const lordTransfer = await prisma.lordTransfer.upsert({
  create: {
    // ... data to create a LordTransfer
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the LordTransfer we want to update
  }
})

Input

Name Type Required
where LordTransferWhereUniqueInput Yes
create LordTransferCreateInput | LordTransferUncheckedCreateInput Yes
update LordTransferUpdateInput | LordTransferUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Army

Name Value
@@unique
  • realmId
  • armyId
@@index
  • realmId
  • armyId

Fields

Name Type Attributes Required Comment
realmId Int
  • -
Yes -
armyId Int
  • -
Yes -
orderId Int
  • @default(0)
Yes -
destinationRealmId Int
  • @default(0)
Yes -
destinationArrivalTime DateTime?
  • -
No -
armyPacked Int
  • @default(0)
Yes -
lastAttacked DateTime?
  • -
No -
xp Int
  • @default(0)
Yes -
level Int
  • @default(0)
Yes -
callSign Int
  • @default(0)
Yes -
lightCavalryQty Int
  • @default(0)
Yes -
lightCavalryHealth Int
  • @default(0)
Yes -
heavyCavalryQty Int
  • @default(0)
Yes -
heavyCavalryHealth Int
  • @default(0)
Yes -
archerQty Int
  • @default(0)
Yes -
archerHealth Int
  • @default(0)
Yes -
longbowQty Int
  • @default(0)
Yes -
longbowHealth Int
  • @default(0)
Yes -
mageQty Int
  • @default(0)
Yes -
mageHealth Int
  • @default(0)
Yes -
arcanistQty Int
  • @default(0)
Yes -
arcanistHealth Int
  • @default(0)
Yes -
lightInfantryQty Int
  • @default(0)
Yes -
lightInfantryHealth Int
  • @default(0)
Yes -
heavyInfantryQty Int
  • @default(0)
Yes -
heavyInfantryHealth Int
  • @default(0)
Yes -
bastionId Int
  • @default(0)
Yes -
bastionPastLocation Int
  • @default(0)
Yes -
bastionCurrentLocation Int
  • @default(0)
Yes -
bastionArrivalBlock Int
  • @default(0)
Yes -
ownRealm Realm
  • -
Yes -

Operations

findUnique

Find zero or one Army

// Get one Army
const army = await prisma.army.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ArmyWhereUniqueInput Yes

Output

Type: Army
Required: No
List: No

findFirst

Find first Army

// Get one Army
const army = await prisma.army.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ArmyWhereInput No
orderBy ArmyOrderByWithRelationInput[] | ArmyOrderByWithRelationInput No
cursor ArmyWhereUniqueInput No
take Int No
skip Int No
distinct ArmyScalarFieldEnum[] No

Output

Type: Army
Required: No
List: No

findMany

Find zero or more Army

// Get all Army
const Army = await prisma.army.findMany()
// Get first 10 Army
const Army = await prisma.army.findMany({ take: 10 })

Input

Name Type Required
where ArmyWhereInput No
orderBy ArmyOrderByWithRelationInput[] | ArmyOrderByWithRelationInput No
cursor ArmyWhereUniqueInput No
take Int No
skip Int No
distinct ArmyScalarFieldEnum[] No

Output

Type: Army
Required: Yes
List: Yes

create

Create one Army

// Create one Army
const Army = await prisma.army.create({
  data: {
    // ... data to create a Army
  }
})

Input

Name Type Required
data ArmyCreateInput | ArmyUncheckedCreateInput Yes

Output

Type: Army
Required: Yes
List: No

delete

Delete one Army

// Delete one Army
const Army = await prisma.army.delete({
  where: {
    // ... filter to delete one Army
  }
})

Input

Name Type Required
where ArmyWhereUniqueInput Yes

Output

Type: Army
Required: No
List: No

update

Update one Army

// Update one Army
const army = await prisma.army.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ArmyUpdateInput | ArmyUncheckedUpdateInput Yes
where ArmyWhereUniqueInput Yes

Output

Type: Army
Required: No
List: No

deleteMany

Delete zero or more Army

// Delete a few Army
const { count } = await prisma.army.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ArmyWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Army

const { count } = await prisma.army.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ArmyUpdateManyMutationInput | ArmyUncheckedUpdateManyInput Yes
where ArmyWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Army

// Update or create a Army
const army = await prisma.army.upsert({
  create: {
    // ... data to create a Army
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Army we want to update
  }
})

Input

Name Type Required
where ArmyWhereUniqueInput Yes
create ArmyCreateInput | ArmyUncheckedCreateInput Yes
update ArmyUpdateInput | ArmyUncheckedUpdateInput Yes

Output

Type: Army
Required: Yes
List: No

Bastion

Fields

Name Type Attributes Required Comment
bastionId Int
  • @id
Yes -
longitude Float
  • @default(0)
Yes -
latitude Float
  • @default(0)
Yes -

Operations

findUnique

Find zero or one Bastion

// Get one Bastion
const bastion = await prisma.bastion.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BastionWhereUniqueInput Yes

Output

Type: Bastion
Required: No
List: No

findFirst

Find first Bastion

// Get one Bastion
const bastion = await prisma.bastion.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BastionWhereInput No
orderBy BastionOrderByWithRelationInput[] | BastionOrderByWithRelationInput No
cursor BastionWhereUniqueInput No
take Int No
skip Int No
distinct BastionScalarFieldEnum[] No

Output

Type: Bastion
Required: No
List: No

findMany

Find zero or more Bastion

// Get all Bastion
const Bastion = await prisma.bastion.findMany()
// Get first 10 Bastion
const Bastion = await prisma.bastion.findMany({ take: 10 })

Input

Name Type Required
where BastionWhereInput No
orderBy BastionOrderByWithRelationInput[] | BastionOrderByWithRelationInput No
cursor BastionWhereUniqueInput No
take Int No
skip Int No
distinct BastionScalarFieldEnum[] No

Output

Type: Bastion
Required: Yes
List: Yes

create

Create one Bastion

// Create one Bastion
const Bastion = await prisma.bastion.create({
  data: {
    // ... data to create a Bastion
  }
})

Input

Name Type Required
data BastionCreateInput | BastionUncheckedCreateInput Yes

Output

Type: Bastion
Required: Yes
List: No

delete

Delete one Bastion

// Delete one Bastion
const Bastion = await prisma.bastion.delete({
  where: {
    // ... filter to delete one Bastion
  }
})

Input

Name Type Required
where BastionWhereUniqueInput Yes

Output

Type: Bastion
Required: No
List: No

update

Update one Bastion

// Update one Bastion
const bastion = await prisma.bastion.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BastionUpdateInput | BastionUncheckedUpdateInput Yes
where BastionWhereUniqueInput Yes

Output

Type: Bastion
Required: No
List: No

deleteMany

Delete zero or more Bastion

// Delete a few Bastion
const { count } = await prisma.bastion.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BastionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Bastion

const { count } = await prisma.bastion.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BastionUpdateManyMutationInput | BastionUncheckedUpdateManyInput Yes
where BastionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Bastion

// Update or create a Bastion
const bastion = await prisma.bastion.upsert({
  create: {
    // ... data to create a Bastion
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Bastion we want to update
  }
})

Input

Name Type Required
where BastionWhereUniqueInput Yes
create BastionCreateInput | BastionUncheckedCreateInput Yes
update BastionUpdateInput | BastionUncheckedUpdateInput Yes

Output

Type: Bastion
Required: Yes
List: No

BastionLocation

Name Value
@@unique
  • bastionId
  • locationId
@@index
  • bastionId
  • locationId

Fields

Name Type Attributes Required Comment
bastionId Int
  • -
Yes -
locationId Int
  • -
Yes -
defendingOrderId Int
  • @default(0)
Yes -
takenBlock Int
  • @default(0)
Yes -

Operations

findUnique

Find zero or one BastionLocation

// Get one BastionLocation
const bastionLocation = await prisma.bastionLocation.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BastionLocationWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first BastionLocation

// Get one BastionLocation
const bastionLocation = await prisma.bastionLocation.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BastionLocationWhereInput No
orderBy BastionLocationOrderByWithRelationInput[] | BastionLocationOrderByWithRelationInput No
cursor BastionLocationWhereUniqueInput No
take Int No
skip Int No
distinct BastionLocationScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more BastionLocation

// Get all BastionLocation
const BastionLocation = await prisma.bastionLocation.findMany()
// Get first 10 BastionLocation
const BastionLocation = await prisma.bastionLocation.findMany({ take: 10 })

Input

Name Type Required
where BastionLocationWhereInput No
orderBy BastionLocationOrderByWithRelationInput[] | BastionLocationOrderByWithRelationInput No
cursor BastionLocationWhereUniqueInput No
take Int No
skip Int No
distinct BastionLocationScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one BastionLocation

// Create one BastionLocation
const BastionLocation = await prisma.bastionLocation.create({
  data: {
    // ... data to create a BastionLocation
  }
})

Input

Name Type Required
data BastionLocationCreateInput | BastionLocationUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one BastionLocation

// Delete one BastionLocation
const BastionLocation = await prisma.bastionLocation.delete({
  where: {
    // ... filter to delete one BastionLocation
  }
})

Input

Name Type Required
where BastionLocationWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one BastionLocation

// Update one BastionLocation
const bastionLocation = await prisma.bastionLocation.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BastionLocationUpdateInput | BastionLocationUncheckedUpdateInput Yes
where BastionLocationWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more BastionLocation

// Delete a few BastionLocation
const { count } = await prisma.bastionLocation.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BastionLocationWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BastionLocation

const { count } = await prisma.bastionLocation.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BastionLocationUpdateManyMutationInput | BastionLocationUncheckedUpdateManyInput Yes
where BastionLocationWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BastionLocation

// Update or create a BastionLocation
const bastionLocation = await prisma.bastionLocation.upsert({
  create: {
    // ... data to create a BastionLocation
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BastionLocation we want to update
  }
})

Input

Name Type Required
where BastionLocationWhereUniqueInput Yes
create BastionLocationCreateInput | BastionLocationUncheckedCreateInput Yes
update BastionLocationUpdateInput | BastionLocationUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Travel

Fields

Name Type Attributes Required Comment
eventId String
  • @id
Yes -
contractId Int
  • -
Yes -
tokenId Int
  • -
Yes -
nestedId Int
  • -
Yes -
locationContractId Int
  • -
Yes -
locationTokenId Int
  • -
Yes -
locationNestedId Int
  • -
Yes -
destinationContractId Int
  • -
Yes -
destinationTokenId Int
  • -
Yes -
destinationNestedId Int
  • -
Yes -
destinationArrivalTime DateTime
  • -
Yes -
timestamp DateTime
  • -
Yes -

Operations

findUnique

Find zero or one Travel

// Get one Travel
const travel = await prisma.travel.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TravelWhereUniqueInput Yes

Output

Type: Travel
Required: No
List: No

findFirst

Find first Travel

// Get one Travel
const travel = await prisma.travel.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TravelWhereInput No
orderBy TravelOrderByWithRelationInput[] | TravelOrderByWithRelationInput No
cursor TravelWhereUniqueInput No
take Int No
skip Int No
distinct TravelScalarFieldEnum[] No

Output

Type: Travel
Required: No
List: No

findMany

Find zero or more Travel

// Get all Travel
const Travel = await prisma.travel.findMany()
// Get first 10 Travel
const Travel = await prisma.travel.findMany({ take: 10 })

Input

Name Type Required
where TravelWhereInput No
orderBy TravelOrderByWithRelationInput[] | TravelOrderByWithRelationInput No
cursor TravelWhereUniqueInput No
take Int No
skip Int No
distinct TravelScalarFieldEnum[] No

Output

Type: Travel
Required: Yes
List: Yes

create

Create one Travel

// Create one Travel
const Travel = await prisma.travel.create({
  data: {
    // ... data to create a Travel
  }
})

Input

Name Type Required
data TravelCreateInput | TravelUncheckedCreateInput Yes

Output

Type: Travel
Required: Yes
List: No

delete

Delete one Travel

// Delete one Travel
const Travel = await prisma.travel.delete({
  where: {
    // ... filter to delete one Travel
  }
})

Input

Name Type Required
where TravelWhereUniqueInput Yes

Output

Type: Travel
Required: No
List: No

update

Update one Travel

// Update one Travel
const travel = await prisma.travel.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TravelUpdateInput | TravelUncheckedUpdateInput Yes
where TravelWhereUniqueInput Yes

Output

Type: Travel
Required: No
List: No

deleteMany

Delete zero or more Travel

// Delete a few Travel
const { count } = await prisma.travel.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TravelWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Travel

const { count } = await prisma.travel.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TravelUpdateManyMutationInput | TravelUncheckedUpdateManyInput Yes
where TravelWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Travel

// Update or create a Travel
const travel = await prisma.travel.upsert({
  create: {
    // ... data to create a Travel
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Travel we want to update
  }
})

Input

Name Type Required
where TravelWhereUniqueInput Yes
create TravelCreateInput | TravelUncheckedCreateInput Yes
update TravelUpdateInput | TravelUncheckedUpdateInput Yes

Output

Type: Travel
Required: Yes
List: No

ExchangeEvent

Fields

Name Type Attributes Required Comment
eventId String
  • @unique
  • @id
Yes -
type ExchangeEventType
  • -
Yes -
resourceId Int
  • -
Yes -
address String
  • -
Yes -
currencyAmount String
  • -
Yes -
currencyAmountValue Decimal
  • @default(0)
Yes -
resourceAmount String
  • -
Yes -
resourceAmountValue Decimal
  • @default(0)
Yes -
timestamp DateTime
  • -
Yes -

Operations

findUnique

Find zero or one ExchangeEvent

// Get one ExchangeEvent
const exchangeEvent = await prisma.exchangeEvent.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ExchangeEventWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ExchangeEvent

// Get one ExchangeEvent
const exchangeEvent = await prisma.exchangeEvent.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ExchangeEventWhereInput No
orderBy ExchangeEventOrderByWithRelationInput[] | ExchangeEventOrderByWithRelationInput No
cursor ExchangeEventWhereUniqueInput No
take Int No
skip Int No
distinct ExchangeEventScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ExchangeEvent

// Get all ExchangeEvent
const ExchangeEvent = await prisma.exchangeEvent.findMany()
// Get first 10 ExchangeEvent
const ExchangeEvent = await prisma.exchangeEvent.findMany({ take: 10 })

Input

Name Type Required
where ExchangeEventWhereInput No
orderBy ExchangeEventOrderByWithRelationInput[] | ExchangeEventOrderByWithRelationInput No
cursor ExchangeEventWhereUniqueInput No
take Int No
skip Int No
distinct ExchangeEventScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ExchangeEvent

// Create one ExchangeEvent
const ExchangeEvent = await prisma.exchangeEvent.create({
  data: {
    // ... data to create a ExchangeEvent
  }
})

Input

Name Type Required
data ExchangeEventCreateInput | ExchangeEventUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ExchangeEvent

// Delete one ExchangeEvent
const ExchangeEvent = await prisma.exchangeEvent.delete({
  where: {
    // ... filter to delete one ExchangeEvent
  }
})

Input

Name Type Required
where ExchangeEventWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ExchangeEvent

// Update one ExchangeEvent
const exchangeEvent = await prisma.exchangeEvent.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ExchangeEventUpdateInput | ExchangeEventUncheckedUpdateInput Yes
where ExchangeEventWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ExchangeEvent

// Delete a few ExchangeEvent
const { count } = await prisma.exchangeEvent.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ExchangeEventWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ExchangeEvent

const { count } = await prisma.exchangeEvent.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ExchangeEventUpdateManyMutationInput | ExchangeEventUncheckedUpdateManyInput Yes
where ExchangeEventWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ExchangeEvent

// Update or create a ExchangeEvent
const exchangeEvent = await prisma.exchangeEvent.upsert({
  create: {
    // ... data to create a ExchangeEvent
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ExchangeEvent we want to update
  }
})

Input

Name Type Required
where ExchangeEventWhereUniqueInput Yes
create ExchangeEventCreateInput | ExchangeEventUncheckedCreateInput Yes
update ExchangeEventUpdateInput | ExchangeEventUncheckedUpdateInput Yes

Output

Required: Yes
List: No

BuildArmyEvent

Fields

Name Type Attributes Required Comment
eventId String
  • @unique
  • @id
Yes -
realmId Int
  • -
Yes -
armyId Int
  • -
Yes -
lightCavalryQty Int
  • @default(0)
Yes -
lightCavalryHealth Int
  • @default(0)
Yes -
heavyCavalryQty Int
  • @default(0)
Yes -
heavyCavalryHealth Int
  • @default(0)
Yes -
archerQty Int
  • @default(0)
Yes -
archerHealth Int
  • @default(0)
Yes -
longbowQty Int
  • @default(0)
Yes -
longbowHealth Int
  • @default(0)
Yes -
mageQty Int
  • @default(0)
Yes -
mageHealth Int
  • @default(0)
Yes -
arcanistQty Int
  • @default(0)
Yes -
arcanistHealth Int
  • @default(0)
Yes -
lightInfantryQty Int
  • @default(0)
Yes -
lightInfantryHealth Int
  • @default(0)
Yes -
heavyInfantryQty Int
  • @default(0)
Yes -
heavyInfantryHealth Int
  • @default(0)
Yes -
timestamp DateTime
  • -
Yes -

Operations

findUnique

Find zero or one BuildArmyEvent

// Get one BuildArmyEvent
const buildArmyEvent = await prisma.buildArmyEvent.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BuildArmyEventWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first BuildArmyEvent

// Get one BuildArmyEvent
const buildArmyEvent = await prisma.buildArmyEvent.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BuildArmyEventWhereInput No
orderBy BuildArmyEventOrderByWithRelationInput[] | BuildArmyEventOrderByWithRelationInput No
cursor BuildArmyEventWhereUniqueInput No
take Int No
skip Int No
distinct BuildArmyEventScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more BuildArmyEvent

// Get all BuildArmyEvent
const BuildArmyEvent = await prisma.buildArmyEvent.findMany()
// Get first 10 BuildArmyEvent
const BuildArmyEvent = await prisma.buildArmyEvent.findMany({ take: 10 })

Input

Name Type Required
where BuildArmyEventWhereInput No
orderBy BuildArmyEventOrderByWithRelationInput[] | BuildArmyEventOrderByWithRelationInput No
cursor BuildArmyEventWhereUniqueInput No
take Int No
skip Int No
distinct BuildArmyEventScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one BuildArmyEvent

// Create one BuildArmyEvent
const BuildArmyEvent = await prisma.buildArmyEvent.create({
  data: {
    // ... data to create a BuildArmyEvent
  }
})

Input

Name Type Required
data BuildArmyEventCreateInput | BuildArmyEventUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one BuildArmyEvent

// Delete one BuildArmyEvent
const BuildArmyEvent = await prisma.buildArmyEvent.delete({
  where: {
    // ... filter to delete one BuildArmyEvent
  }
})

Input

Name Type Required
where BuildArmyEventWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one BuildArmyEvent

// Update one BuildArmyEvent
const buildArmyEvent = await prisma.buildArmyEvent.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BuildArmyEventUpdateInput | BuildArmyEventUncheckedUpdateInput Yes
where BuildArmyEventWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more BuildArmyEvent

// Delete a few BuildArmyEvent
const { count } = await prisma.buildArmyEvent.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BuildArmyEventWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BuildArmyEvent

const { count } = await prisma.buildArmyEvent.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BuildArmyEventUpdateManyMutationInput | BuildArmyEventUncheckedUpdateManyInput Yes
where BuildArmyEventWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BuildArmyEvent

// Update or create a BuildArmyEvent
const buildArmyEvent = await prisma.buildArmyEvent.upsert({
  create: {
    // ... data to create a BuildArmyEvent
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BuildArmyEvent we want to update
  }
})

Input

Name Type Required
where BuildArmyEventWhereUniqueInput Yes
create BuildArmyEventCreateInput | BuildArmyEventUncheckedCreateInput Yes
update BuildArmyEventUpdateInput | BuildArmyEventUncheckedUpdateInput Yes

Output

Required: Yes
List: No

BuildBuildingEvent

Fields

Name Type Attributes Required Comment
eventId String
  • @unique
  • @id
Yes -
buildingId Int
  • -
Yes -
realmId Int
  • -
Yes -
buildingIntegrity Int
  • -
Yes -
count Int
  • -
Yes -
timestamp DateTime
  • -
Yes -

Operations

findUnique

Find zero or one BuildBuildingEvent

// Get one BuildBuildingEvent
const buildBuildingEvent = await prisma.buildBuildingEvent.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BuildBuildingEventWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first BuildBuildingEvent

// Get one BuildBuildingEvent
const buildBuildingEvent = await prisma.buildBuildingEvent.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BuildBuildingEventWhereInput No
orderBy BuildBuildingEventOrderByWithRelationInput[] | BuildBuildingEventOrderByWithRelationInput No
cursor BuildBuildingEventWhereUniqueInput No
take Int No
skip Int No
distinct BuildBuildingEventScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more BuildBuildingEvent

// Get all BuildBuildingEvent
const BuildBuildingEvent = await prisma.buildBuildingEvent.findMany()
// Get first 10 BuildBuildingEvent
const BuildBuildingEvent = await prisma.buildBuildingEvent.findMany({ take: 10 })

Input

Name Type Required
where BuildBuildingEventWhereInput No
orderBy BuildBuildingEventOrderByWithRelationInput[] | BuildBuildingEventOrderByWithRelationInput No
cursor BuildBuildingEventWhereUniqueInput No
take Int No
skip Int No
distinct BuildBuildingEventScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one BuildBuildingEvent

// Create one BuildBuildingEvent
const BuildBuildingEvent = await prisma.buildBuildingEvent.create({
  data: {
    // ... data to create a BuildBuildingEvent
  }
})

Input

Name Type Required
data BuildBuildingEventCreateInput | BuildBuildingEventUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one BuildBuildingEvent

// Delete one BuildBuildingEvent
const BuildBuildingEvent = await prisma.buildBuildingEvent.delete({
  where: {
    // ... filter to delete one BuildBuildingEvent
  }
})

Input

Name Type Required
where BuildBuildingEventWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one BuildBuildingEvent

// Update one BuildBuildingEvent
const buildBuildingEvent = await prisma.buildBuildingEvent.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BuildBuildingEventUpdateInput | BuildBuildingEventUncheckedUpdateInput Yes
where BuildBuildingEventWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more BuildBuildingEvent

// Delete a few BuildBuildingEvent
const { count } = await prisma.buildBuildingEvent.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BuildBuildingEventWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BuildBuildingEvent

const { count } = await prisma.buildBuildingEvent.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BuildBuildingEventUpdateManyMutationInput | BuildBuildingEventUncheckedUpdateManyInput Yes
where BuildBuildingEventWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BuildBuildingEvent

// Update or create a BuildBuildingEvent
const buildBuildingEvent = await prisma.buildBuildingEvent.upsert({
  create: {
    // ... data to create a BuildBuildingEvent
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BuildBuildingEvent we want to update
  }
})

Input

Name Type Required
where BuildBuildingEventWhereUniqueInput Yes
create BuildBuildingEventCreateInput | BuildBuildingEventUncheckedCreateInput Yes
update BuildBuildingEventUpdateInput | BuildBuildingEventUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Types

Input Types

WalletWhereInput

Name Type Nullable
AND WalletWhereInput | WalletWhereInput[] No
OR WalletWhereInput[] No
NOT WalletWhereInput | WalletWhereInput[] No
id IntFilter | Int No
address StringFilter | String No
realmsL1 RealmListRelationFilter No
realmsL2 RealmListRelationFilter No
realmsSettled RealmListRelationFilter No

WalletOrderByWithRelationInput

Name Type Nullable
id SortOrder No
address SortOrder No
realmsL1 RealmOrderByRelationAggregateInput No
realmsL2 RealmOrderByRelationAggregateInput No
realmsSettled RealmOrderByRelationAggregateInput No

WalletWhereUniqueInput

Name Type Nullable
id Int No
address String No

WalletOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
address SortOrder No
_count WalletCountOrderByAggregateInput No
_avg WalletAvgOrderByAggregateInput No
_max WalletMaxOrderByAggregateInput No
_min WalletMinOrderByAggregateInput No
_sum WalletSumOrderByAggregateInput No


RealmWhereInput

Name Type Nullable
AND RealmWhereInput | RealmWhereInput[] No
OR RealmWhereInput[] No
NOT RealmWhereInput | RealmWhereInput[] No
id IntFilter | Int No
realmId IntFilter | Int No
name StringNullableFilter | String | Null Yes
wallet WalletRelationFilter | WalletWhereInput | Null Yes
owner StringNullableFilter | String | Null Yes
bridgedOwner StringNullableFilter | String | Null Yes
ownerL2 StringNullableFilter | String | Null Yes
walletL2 WalletRelationFilter | WalletWhereInput | Null Yes
settledOwner StringNullableFilter | String | Null Yes
walletSettled WalletRelationFilter | WalletWhereInput | Null Yes
wonder StringNullableFilter | String | Null Yes
rarityRank IntFilter | Int No
rarityScore FloatFilter | Float No
imageUrl StringFilter | String No
relic RelicRelationFilter | RelicWhereInput | Null Yes
orderType EnumOrderTypeNullableFilter | OrderType | Null Yes
buildings BuildingListRelationFilter No
resources ResourceListRelationFilter No
relicsOwned RelicListRelationFilter No
traits RealmTraitListRelationFilter No
squad TroopListRelationFilter No
lastAttacked DateTimeNullableFilter | DateTime | Null Yes
lastClaimTime DateTimeNullableFilter | DateTime | Null Yes
lastTick DateTimeNullableFilter | DateTime | Null Yes
lastVaultTime DateTimeNullableFilter | DateTime | Null Yes
longitude FloatFilter | Float No
latitude FloatFilter | Float No
ownArmies ArmyListRelationFilter No

RealmOrderByWithRelationInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
name SortOrder No
wallet WalletOrderByWithRelationInput No
owner SortOrder No
bridgedOwner SortOrder No
ownerL2 SortOrder No
walletL2 WalletOrderByWithRelationInput No
settledOwner SortOrder No
walletSettled WalletOrderByWithRelationInput No
wonder SortOrder No
rarityRank SortOrder No
rarityScore SortOrder No
imageUrl SortOrder No
relic RelicOrderByWithRelationInput No
orderType SortOrder No
buildings BuildingOrderByRelationAggregateInput No
resources ResourceOrderByRelationAggregateInput No
relicsOwned RelicOrderByRelationAggregateInput No
traits RealmTraitOrderByRelationAggregateInput No
squad TroopOrderByRelationAggregateInput No
lastAttacked SortOrder No
lastClaimTime SortOrder No
lastTick SortOrder No
lastVaultTime SortOrder No
longitude SortOrder No
latitude SortOrder No
ownArmies ArmyOrderByRelationAggregateInput No

RealmWhereUniqueInput

Name Type Nullable
id Int No
realmId Int No

RealmOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
name SortOrder No
owner SortOrder No
bridgedOwner SortOrder No
ownerL2 SortOrder No
settledOwner SortOrder No
wonder SortOrder No
rarityRank SortOrder No
rarityScore SortOrder No
imageUrl SortOrder No
orderType SortOrder No
lastAttacked SortOrder No
lastClaimTime SortOrder No
lastTick SortOrder No
lastVaultTime SortOrder No
longitude SortOrder No
latitude SortOrder No
_count RealmCountOrderByAggregateInput No
_avg RealmAvgOrderByAggregateInput No
_max RealmMaxOrderByAggregateInput No
_min RealmMinOrderByAggregateInput No
_sum RealmSumOrderByAggregateInput No

RealmScalarWhereWithAggregatesInput

Name Type Nullable
AND RealmScalarWhereWithAggregatesInput | RealmScalarWhereWithAggregatesInput[] No
OR RealmScalarWhereWithAggregatesInput[] No
NOT RealmScalarWhereWithAggregatesInput | RealmScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
realmId IntWithAggregatesFilter | Int No
name StringNullableWithAggregatesFilter | String | Null Yes
owner StringNullableWithAggregatesFilter | String | Null Yes
bridgedOwner StringNullableWithAggregatesFilter | String | Null Yes
ownerL2 StringNullableWithAggregatesFilter | String | Null Yes
settledOwner StringNullableWithAggregatesFilter | String | Null Yes
wonder StringNullableWithAggregatesFilter | String | Null Yes
rarityRank IntWithAggregatesFilter | Int No
rarityScore FloatWithAggregatesFilter | Float No
imageUrl StringWithAggregatesFilter | String No
orderType EnumOrderTypeNullableWithAggregatesFilter | OrderType | Null Yes
lastAttacked DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
lastClaimTime DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
lastTick DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
lastVaultTime DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
longitude FloatWithAggregatesFilter | Float No
latitude FloatWithAggregatesFilter | Float No

BuildingWhereInput

Name Type Nullable
AND BuildingWhereInput | BuildingWhereInput[] No
OR BuildingWhereInput[] No
NOT BuildingWhereInput | BuildingWhereInput[] No
id IntFilter | Int No
buildingId IntFilter | Int No
realmId IntNullableFilter | Int | Null Yes
eventId StringFilter | String No
buildingIntegrity IntFilter | Int No
realm RealmRelationFilter | RealmWhereInput | Null Yes
builds StringNullableListFilter No

BuildingOrderByWithRelationInput

Name Type Nullable
id SortOrder No
buildingId SortOrder No
realmId SortOrder No
eventId SortOrder No
buildingIntegrity SortOrder No
realm RealmOrderByWithRelationInput No
builds SortOrder No

BuildingWhereUniqueInput

Name Type Nullable
id Int No
realmId_buildingId BuildingRealmIdBuildingIdCompoundUniqueInput No

BuildingOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
buildingId SortOrder No
realmId SortOrder No
eventId SortOrder No
buildingIntegrity SortOrder No
builds SortOrder No
_count BuildingCountOrderByAggregateInput No
_avg BuildingAvgOrderByAggregateInput No
_max BuildingMaxOrderByAggregateInput No
_min BuildingMinOrderByAggregateInput No
_sum BuildingSumOrderByAggregateInput No


FoodWhereInput

Name Type Nullable
AND FoodWhereInput | FoodWhereInput[] No
OR FoodWhereInput[] No
NOT FoodWhereInput | FoodWhereInput[] No
id IntFilter | Int No
realmId IntFilter | Int No
buildingId IntFilter | Int No
eventId StringFilter | String No
qty IntFilter | Int No
harvests IntFilter | Int No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No

FoodOrderByWithRelationInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
buildingId SortOrder No
eventId SortOrder No
qty SortOrder No
harvests SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

FoodWhereUniqueInput

Name Type Nullable
id Int No
realmId_buildingId FoodRealmIdBuildingIdCompoundUniqueInput No

FoodOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
buildingId SortOrder No
eventId SortOrder No
qty SortOrder No
harvests SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
_count FoodCountOrderByAggregateInput No
_avg FoodAvgOrderByAggregateInput No
_max FoodMaxOrderByAggregateInput No
_min FoodMinOrderByAggregateInput No
_sum FoodSumOrderByAggregateInput No


RelicWhereInput

Name Type Nullable
AND RelicWhereInput | RelicWhereInput[] No
OR RelicWhereInput[] No
NOT RelicWhereInput | RelicWhereInput[] No
realmId IntFilter | Int No
originRealm RealmRelationFilter | RealmWhereInput | Null Yes
heldByRealm IntFilter | Int No
realmHolder RealmRelationFilter | RealmWhereInput | Null Yes
isAnnexed BoolFilter | Boolean No

RelicOrderByWithRelationInput

Name Type Nullable
realmId SortOrder No
originRealm RealmOrderByWithRelationInput No
heldByRealm SortOrder No
realmHolder RealmOrderByWithRelationInput No
isAnnexed SortOrder No

RelicWhereUniqueInput

Name Type Nullable
realmId Int No

RelicOrderByWithAggregationInput

Name Type Nullable
realmId SortOrder No
heldByRealm SortOrder No
isAnnexed SortOrder No
_count RelicCountOrderByAggregateInput No
_avg RelicAvgOrderByAggregateInput No
_max RelicMaxOrderByAggregateInput No
_min RelicMinOrderByAggregateInput No
_sum RelicSumOrderByAggregateInput No



BuildingRealmTraitConstraintOrderByWithRelationInput

Name Type Nullable
buildingId SortOrder No
traitType SortOrder No
max SortOrder No

BuildingRealmTraitConstraintWhereUniqueInput

Name Type Nullable
buildingId Int No



ResourceWhereInput

Name Type Nullable
AND ResourceWhereInput | ResourceWhereInput[] No
OR ResourceWhereInput[] No
NOT ResourceWhereInput | ResourceWhereInput[] No
id IntFilter | Int No
resourceId IntFilter | Int No
realmId IntNullableFilter | Int | Null Yes
realm RealmRelationFilter | RealmWhereInput | Null Yes
labor LaborRelationFilter | LaborWhereInput | Null Yes
level IntFilter | Int No
upgrades StringNullableListFilter No

ResourceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
resourceId SortOrder No
realmId SortOrder No
realm RealmOrderByWithRelationInput No
labor LaborOrderByWithRelationInput No
level SortOrder No
upgrades SortOrder No

ResourceWhereUniqueInput

Name Type Nullable
id Int No
resourceId_realmId ResourceResourceIdRealmIdCompoundUniqueInput No

ResourceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
resourceId SortOrder No
realmId SortOrder No
level SortOrder No
upgrades SortOrder No
_count ResourceCountOrderByAggregateInput No
_avg ResourceAvgOrderByAggregateInput No
_max ResourceMaxOrderByAggregateInput No
_min ResourceMinOrderByAggregateInput No
_sum ResourceSumOrderByAggregateInput No


LaborWhereInput

Name Type Nullable
AND LaborWhereInput | LaborWhereInput[] No
OR LaborWhereInput[] No
NOT LaborWhereInput | LaborWhereInput[] No
id IntFilter | Int No
realmId IntFilter | Int No
resourceId IntFilter | Int No
vaultBalance DateTimeNullableFilter | DateTime | Null Yes
balance DateTimeNullableFilter | DateTime | Null Yes
lastUpdate DateTimeNullableFilter | DateTime | Null Yes
lastEventId StringNullableFilter | String | Null Yes
qtyBuilt IntFilter | Int No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
resoure ResourceRelationFilter | ResourceWhereInput No

LaborOrderByWithRelationInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
resourceId SortOrder No
vaultBalance SortOrder No
balance SortOrder No
lastUpdate SortOrder No
lastEventId SortOrder No
qtyBuilt SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
resoure ResourceOrderByWithRelationInput No

LaborWhereUniqueInput

Name Type Nullable
id Int No
realmId_resourceId LaborRealmIdResourceIdCompoundUniqueInput No

LaborOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
resourceId SortOrder No
vaultBalance SortOrder No
balance SortOrder No
lastUpdate SortOrder No
lastEventId SortOrder No
qtyBuilt SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
_count LaborCountOrderByAggregateInput No
_avg LaborAvgOrderByAggregateInput No
_max LaborMaxOrderByAggregateInput No
_min LaborMinOrderByAggregateInput No
_sum LaborSumOrderByAggregateInput No

LaborScalarWhereWithAggregatesInput

Name Type Nullable
AND LaborScalarWhereWithAggregatesInput | LaborScalarWhereWithAggregatesInput[] No
OR LaborScalarWhereWithAggregatesInput[] No
NOT LaborScalarWhereWithAggregatesInput | LaborScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
realmId IntWithAggregatesFilter | Int No
resourceId IntWithAggregatesFilter | Int No
vaultBalance DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
balance DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
lastUpdate DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
lastEventId StringNullableWithAggregatesFilter | String | Null Yes
qtyBuilt IntWithAggregatesFilter | Int No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No

WalletBalanceWhereInput

Name Type Nullable
AND WalletBalanceWhereInput | WalletBalanceWhereInput[] No
OR WalletBalanceWhereInput[] No
NOT WalletBalanceWhereInput | WalletBalanceWhereInput[] No
id IntFilter | Int No
address StringFilter | String No
tokenId IntFilter | Int No
amount StringFilter | String No
lastEventId StringNullableFilter | String | Null Yes

WalletBalanceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
address SortOrder No
tokenId SortOrder No
amount SortOrder No
lastEventId SortOrder No

WalletBalanceWhereUniqueInput

Name Type Nullable
id Int No
address_tokenId WalletBalanceAddressTokenIdCompoundUniqueInput No

WalletBalanceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
address SortOrder No
tokenId SortOrder No
amount SortOrder No
lastEventId SortOrder No
_count WalletBalanceCountOrderByAggregateInput No
_avg WalletBalanceAvgOrderByAggregateInput No
_max WalletBalanceMaxOrderByAggregateInput No
_min WalletBalanceMinOrderByAggregateInput No
_sum WalletBalanceSumOrderByAggregateInput No


RealmTraitWhereInput

Name Type Nullable
AND RealmTraitWhereInput | RealmTraitWhereInput[] No
OR RealmTraitWhereInput[] No
NOT RealmTraitWhereInput | RealmTraitWhereInput[] No
type EnumRealmTraitTypeFilter | RealmTraitType No
qty IntFilter | Int No
realmId IntFilter | Int No
realm RealmRelationFilter | RealmWhereInput | Null Yes

RealmTraitOrderByWithRelationInput

Name Type Nullable
type SortOrder No
qty SortOrder No
realmId SortOrder No
realm RealmOrderByWithRelationInput No

RealmTraitWhereUniqueInput

Name Type Nullable
type_realmId RealmTraitTypeRealmIdCompoundUniqueInput No

RealmTraitOrderByWithAggregationInput

Name Type Nullable
type SortOrder No
qty SortOrder No
realmId SortOrder No
_count RealmTraitCountOrderByAggregateInput No
_avg RealmTraitAvgOrderByAggregateInput No
_max RealmTraitMaxOrderByAggregateInput No
_min RealmTraitMinOrderByAggregateInput No
_sum RealmTraitSumOrderByAggregateInput No


TroopWhereInput

Name Type Nullable
AND TroopWhereInput | TroopWhereInput[] No
OR TroopWhereInput[] No
NOT TroopWhereInput | TroopWhereInput[] No
realmId IntFilter | Int No
troopId IntFilter | Int No
index IntFilter | Int No
type IntFilter | Int No
tier IntFilter | Int No
building IntFilter | Int No
agility IntFilter | Int No
attack IntFilter | Int No
armor IntFilter | Int No
vitality IntFilter | Int No
wisdom IntFilter | Int No
squadSlot IntFilter | Int No
timestamp DateTimeNullableFilter | DateTime | Null Yes
Realm RealmRelationFilter | RealmWhereInput No

TroopOrderByWithRelationInput

Name Type Nullable
realmId SortOrder No
troopId SortOrder No
index SortOrder No
type SortOrder No
tier SortOrder No
building SortOrder No
agility SortOrder No
attack SortOrder No
armor SortOrder No
vitality SortOrder No
wisdom SortOrder No
squadSlot SortOrder No
timestamp SortOrder No
Realm RealmOrderByWithRelationInput No

TroopWhereUniqueInput

Name Type Nullable
realmId_index_squadSlot TroopRealmIdIndexSquadSlotCompoundUniqueInput No

TroopOrderByWithAggregationInput

Name Type Nullable
realmId SortOrder No
troopId SortOrder No
index SortOrder No
type SortOrder No
tier SortOrder No
building SortOrder No
agility SortOrder No
attack SortOrder No
armor SortOrder No
vitality SortOrder No
wisdom SortOrder No
squadSlot SortOrder No
timestamp SortOrder No
_count TroopCountOrderByAggregateInput No
_avg TroopAvgOrderByAggregateInput No
_max TroopMaxOrderByAggregateInput No
_min TroopMinOrderByAggregateInput No
_sum TroopSumOrderByAggregateInput No

TroopScalarWhereWithAggregatesInput

Name Type Nullable
AND TroopScalarWhereWithAggregatesInput | TroopScalarWhereWithAggregatesInput[] No
OR TroopScalarWhereWithAggregatesInput[] No
NOT TroopScalarWhereWithAggregatesInput | TroopScalarWhereWithAggregatesInput[] No
realmId IntWithAggregatesFilter | Int No
troopId IntWithAggregatesFilter | Int No
index IntWithAggregatesFilter | Int No
type IntWithAggregatesFilter | Int No
tier IntWithAggregatesFilter | Int No
building IntWithAggregatesFilter | Int No
agility IntWithAggregatesFilter | Int No
attack IntWithAggregatesFilter | Int No
armor IntWithAggregatesFilter | Int No
vitality IntWithAggregatesFilter | Int No
wisdom IntWithAggregatesFilter | Int No
squadSlot IntWithAggregatesFilter | Int No
timestamp DateTimeNullableWithAggregatesFilter | DateTime | Null Yes

DesiegeWhereInput

Name Type Nullable
AND DesiegeWhereInput | DesiegeWhereInput[] No
OR DesiegeWhereInput[] No
NOT DesiegeWhereInput | DesiegeWhereInput[] No
id IntFilter | Int No
gameId IntFilter | Int No
winner IntNullableFilter | Int | Null Yes
attackedTokens IntNullableFilter | Int | Null Yes
defendedTokens IntNullableFilter | Int | Null Yes
damageInflicted IntNullableFilter | Int | Null Yes
eventIndexed StringNullableFilter | String | Null Yes
initialHealth IntNullableFilter | Int | Null Yes
startBlock IntFilter | Int No
endBlock IntFilter | Int No
startedOn DateTimeNullableFilter | DateTime | Null Yes

DesiegeOrderByWithRelationInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
winner SortOrder No
attackedTokens SortOrder No
defendedTokens SortOrder No
damageInflicted SortOrder No
eventIndexed SortOrder No
initialHealth SortOrder No
startBlock SortOrder No
endBlock SortOrder No
startedOn SortOrder No

DesiegeWhereUniqueInput

Name Type Nullable
id Int No
gameId Int No

DesiegeOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
winner SortOrder No
attackedTokens SortOrder No
defendedTokens SortOrder No
damageInflicted SortOrder No
eventIndexed SortOrder No
initialHealth SortOrder No
startBlock SortOrder No
endBlock SortOrder No
startedOn SortOrder No
_count DesiegeCountOrderByAggregateInput No
_avg DesiegeAvgOrderByAggregateInput No
_max DesiegeMaxOrderByAggregateInput No
_min DesiegeMinOrderByAggregateInput No
_sum DesiegeSumOrderByAggregateInput No

DesiegeScalarWhereWithAggregatesInput

Name Type Nullable
AND DesiegeScalarWhereWithAggregatesInput | DesiegeScalarWhereWithAggregatesInput[] No
OR DesiegeScalarWhereWithAggregatesInput[] No
NOT DesiegeScalarWhereWithAggregatesInput | DesiegeScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
gameId IntWithAggregatesFilter | Int No
winner IntNullableWithAggregatesFilter | Int | Null Yes
attackedTokens IntNullableWithAggregatesFilter | Int | Null Yes
defendedTokens IntNullableWithAggregatesFilter | Int | Null Yes
damageInflicted IntNullableWithAggregatesFilter | Int | Null Yes
eventIndexed StringNullableWithAggregatesFilter | String | Null Yes
initialHealth IntNullableWithAggregatesFilter | Int | Null Yes
startBlock IntWithAggregatesFilter | Int No
endBlock IntWithAggregatesFilter | Int No
startedOn DateTimeNullableWithAggregatesFilter | DateTime | Null Yes

DesiegeActionWhereInput

Name Type Nullable
AND DesiegeActionWhereInput | DesiegeActionWhereInput[] No
OR DesiegeActionWhereInput[] No
NOT DesiegeActionWhereInput | DesiegeActionWhereInput[] No
id IntFilter | Int No
gameId IntFilter | Int No
account StringFilter | String No
amount IntFilter | Int No
amountBoosted IntFilter | Int No
tokenOffset IntFilter | Int No

DesiegeActionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
account SortOrder No
amount SortOrder No
amountBoosted SortOrder No
tokenOffset SortOrder No

DesiegeActionWhereUniqueInput

Name Type Nullable
id Int No

DesiegeActionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
account SortOrder No
amount SortOrder No
amountBoosted SortOrder No
tokenOffset SortOrder No
_count DesiegeActionCountOrderByAggregateInput No
_avg DesiegeActionAvgOrderByAggregateInput No
_max DesiegeActionMaxOrderByAggregateInput No
_min DesiegeActionMinOrderByAggregateInput No
_sum DesiegeActionSumOrderByAggregateInput No


EventWhereInput

Name Type Nullable
AND EventWhereInput | EventWhereInput[] No
OR EventWhereInput[] No
NOT EventWhereInput | EventWhereInput[] No
id IntFilter | Int No
eventId StringFilter | String No
blockNumber IntFilter | Int No
transactionNumber IntFilter | Int No
chainId StringFilter | String No
contract StringFilter | String No
name StringFilter | String No
parameters StringNullableListFilter No
keys StringNullableListFilter No
timestamp DateTimeFilter | DateTime No
txHash StringFilter | String No
status IntFilter | Int No

EventOrderByWithRelationInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
chainId SortOrder No
contract SortOrder No
name SortOrder No
parameters SortOrder No
keys SortOrder No
timestamp SortOrder No
txHash SortOrder No
status SortOrder No

EventWhereUniqueInput

Name Type Nullable
id Int No
eventId String No

EventOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
chainId SortOrder No
contract SortOrder No
name SortOrder No
parameters SortOrder No
keys SortOrder No
timestamp SortOrder No
txHash SortOrder No
status SortOrder No
_count EventCountOrderByAggregateInput No
_avg EventAvgOrderByAggregateInput No
_max EventMaxOrderByAggregateInput No
_min EventMinOrderByAggregateInput No
_sum EventSumOrderByAggregateInput No


LastIndexedEventWhereInput

Name Type Nullable
AND LastIndexedEventWhereInput | LastIndexedEventWhereInput[] No
OR LastIndexedEventWhereInput[] No
NOT LastIndexedEventWhereInput | LastIndexedEventWhereInput[] No
moduleName StringFilter | String No
eventId StringFilter | String No

LastIndexedEventOrderByWithRelationInput

Name Type Nullable
moduleName SortOrder No
eventId SortOrder No

LastIndexedEventWhereUniqueInput

Name Type Nullable
moduleName String No

LastIndexedEventOrderByWithAggregationInput

Name Type Nullable
moduleName SortOrder No
eventId SortOrder No
_count LastIndexedEventCountOrderByAggregateInput No
_max LastIndexedEventMaxOrderByAggregateInput No
_min LastIndexedEventMinOrderByAggregateInput No


LoreEntityWhereInput

Name Type Nullable
AND LoreEntityWhereInput | LoreEntityWhereInput[] No
OR LoreEntityWhereInput[] No
NOT LoreEntityWhereInput | LoreEntityWhereInput[] No
id IntFilter | Int No
owner StringNullableFilter | String | Null Yes
ownerDisplayName StringNullableFilter | String | Null Yes
kind IntFilter | Int No
eventIndexed StringNullableFilter | String | Null Yes
revisions LoreEntityRevisionListRelationFilter No

LoreEntityOrderByWithRelationInput

Name Type Nullable
id SortOrder No
owner SortOrder No
ownerDisplayName SortOrder No
kind SortOrder No
eventIndexed SortOrder No
revisions LoreEntityRevisionOrderByRelationAggregateInput No

LoreEntityWhereUniqueInput

Name Type Nullable
id Int No

LoreEntityOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
owner SortOrder No
ownerDisplayName SortOrder No
kind SortOrder No
eventIndexed SortOrder No
_count LoreEntityCountOrderByAggregateInput No
_avg LoreEntityAvgOrderByAggregateInput No
_max LoreEntityMaxOrderByAggregateInput No
_min LoreEntityMinOrderByAggregateInput No
_sum LoreEntitySumOrderByAggregateInput No


LoreEntityRevisionWhereInput

Name Type Nullable
AND LoreEntityRevisionWhereInput | LoreEntityRevisionWhereInput[] No
OR LoreEntityRevisionWhereInput[] No
NOT LoreEntityRevisionWhereInput | LoreEntityRevisionWhereInput[] No
id IntFilter | Int No
revisionNumber IntFilter | Int No
arweaveId StringFilter | String No
title StringNullableFilter | String | Null Yes
markdown StringNullableFilter | String | Null Yes
excerpt StringNullableFilter | String | Null Yes
media_url StringNullableFilter | String | Null Yes
createdAt DateTimeNullableFilter | DateTime | Null Yes
entity LoreEntityRelationFilter | LoreEntityWhereInput No
entityId IntFilter | Int No
eventIndexed StringNullableFilter | String | Null Yes
pois LorePoisOnEntityRevisionsListRelationFilter No
props LorePropsOnEntityRevisionsListRelationFilter No

LoreEntityRevisionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
revisionNumber SortOrder No
arweaveId SortOrder No
title SortOrder No
markdown SortOrder No
excerpt SortOrder No
media_url SortOrder No
createdAt SortOrder No
entity LoreEntityOrderByWithRelationInput No
entityId SortOrder No
eventIndexed SortOrder No
pois LorePoisOnEntityRevisionsOrderByRelationAggregateInput No
props LorePropsOnEntityRevisionsOrderByRelationAggregateInput No

LoreEntityRevisionWhereUniqueInput

Name Type Nullable
id Int No

LoreEntityRevisionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
revisionNumber SortOrder No
arweaveId SortOrder No
title SortOrder No
markdown SortOrder No
excerpt SortOrder No
media_url SortOrder No
createdAt SortOrder No
entityId SortOrder No
eventIndexed SortOrder No
_count LoreEntityRevisionCountOrderByAggregateInput No
_avg LoreEntityRevisionAvgOrderByAggregateInput No
_max LoreEntityRevisionMaxOrderByAggregateInput No
_min LoreEntityRevisionMinOrderByAggregateInput No
_sum LoreEntityRevisionSumOrderByAggregateInput No

LoreEntityRevisionScalarWhereWithAggregatesInput

Name Type Nullable
AND LoreEntityRevisionScalarWhereWithAggregatesInput | LoreEntityRevisionScalarWhereWithAggregatesInput[] No
OR LoreEntityRevisionScalarWhereWithAggregatesInput[] No
NOT LoreEntityRevisionScalarWhereWithAggregatesInput | LoreEntityRevisionScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
revisionNumber IntWithAggregatesFilter | Int No
arweaveId StringWithAggregatesFilter | String No
title StringNullableWithAggregatesFilter | String | Null Yes
markdown StringNullableWithAggregatesFilter | String | Null Yes
excerpt StringNullableWithAggregatesFilter | String | Null Yes
media_url StringNullableWithAggregatesFilter | String | Null Yes
createdAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
entityId IntWithAggregatesFilter | Int No
eventIndexed StringNullableWithAggregatesFilter | String | Null Yes

LorePOIWhereInput

Name Type Nullable
AND LorePOIWhereInput | LorePOIWhereInput[] No
OR LorePOIWhereInput[] No
NOT LorePOIWhereInput | LorePOIWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
assetType StringNullableFilter | String | Null Yes
entities LorePoisOnEntityRevisionsListRelationFilter No

LorePOIOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
assetType SortOrder No
entities LorePoisOnEntityRevisionsOrderByRelationAggregateInput No

LorePOIWhereUniqueInput

Name Type Nullable
id Int No

LorePOIOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
assetType SortOrder No
_count LorePOICountOrderByAggregateInput No
_avg LorePOIAvgOrderByAggregateInput No
_max LorePOIMaxOrderByAggregateInput No
_min LorePOIMinOrderByAggregateInput No
_sum LorePOISumOrderByAggregateInput No


LorePropWhereInput

Name Type Nullable
AND LorePropWhereInput | LorePropWhereInput[] No
OR LorePropWhereInput[] No
NOT LorePropWhereInput | LorePropWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
entities LorePropsOnEntityRevisionsListRelationFilter No

LorePropOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
entities LorePropsOnEntityRevisionsOrderByRelationAggregateInput No

LorePropWhereUniqueInput

Name Type Nullable
id Int No




LorePoisOnEntityRevisionsOrderByWithRelationInput

Name Type Nullable
id SortOrder No
entityRevision LoreEntityRevisionOrderByWithRelationInput No
entityRevisionId SortOrder No
poi LorePOIOrderByWithRelationInput No
poiId SortOrder No
assetId SortOrder No

LorePoisOnEntityRevisionsWhereUniqueInput

Name Type Nullable
id Int No




LorePropsOnEntityRevisionsOrderByWithRelationInput

Name Type Nullable
id SortOrder No
entityRevision LoreEntityRevisionOrderByWithRelationInput No
entityRevisionId SortOrder No
prop LorePropOrderByWithRelationInput No
propId SortOrder No
value SortOrder No

LorePropsOnEntityRevisionsWhereUniqueInput

Name Type Nullable
id Int No



ExchangeRateWhereInput

Name Type Nullable
AND ExchangeRateWhereInput | ExchangeRateWhereInput[] No
OR ExchangeRateWhereInput[] No
NOT ExchangeRateWhereInput | ExchangeRateWhereInput[] No
date StringFilter | String No
hour IntFilter | Int No
tokenId IntFilter | Int No
amount StringFilter | String No
buyAmount StringFilter | String No
sellAmount StringFilter | String No
currencyReserve StringFilter | String No
tokenReserve StringFilter | String No
lpAmount StringFilter | String No

ExchangeRateOrderByWithRelationInput

Name Type Nullable
date SortOrder No
hour SortOrder No
tokenId SortOrder No
amount SortOrder No
buyAmount SortOrder No
sellAmount SortOrder No
currencyReserve SortOrder No
tokenReserve SortOrder No
lpAmount SortOrder No

ExchangeRateWhereUniqueInput

Name Type Nullable
date_hour_tokenId ExchangeRateDateHourTokenIdCompoundUniqueInput No

ExchangeRateOrderByWithAggregationInput

Name Type Nullable
date SortOrder No
hour SortOrder No
tokenId SortOrder No
amount SortOrder No
buyAmount SortOrder No
sellAmount SortOrder No
currencyReserve SortOrder No
tokenReserve SortOrder No
lpAmount SortOrder No
_count ExchangeRateCountOrderByAggregateInput No
_avg ExchangeRateAvgOrderByAggregateInput No
_max ExchangeRateMaxOrderByAggregateInput No
_min ExchangeRateMinOrderByAggregateInput No
_sum ExchangeRateSumOrderByAggregateInput No


RealmHistoryWhereInput

Name Type Nullable
AND RealmHistoryWhereInput | RealmHistoryWhereInput[] No
OR RealmHistoryWhereInput[] No
NOT RealmHistoryWhereInput | RealmHistoryWhereInput[] No
id IntFilter | Int No
eventId StringFilter | String No
eventType StringFilter | String No
realmId IntFilter | Int No
bastionId IntFilter | Int No
realmOwner StringFilter | String No
realmName StringFilter | String No
realmOrder EnumOrderTypeNullableFilter | OrderType | Null Yes
data JsonFilter No
timestamp DateTimeFilter | DateTime No
transactionHash StringFilter | String No

RealmHistoryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
eventType SortOrder No
realmId SortOrder No
bastionId SortOrder No
realmOwner SortOrder No
realmName SortOrder No
realmOrder SortOrder No
data SortOrder No
timestamp SortOrder No
transactionHash SortOrder No

RealmHistoryWhereUniqueInput

Name Type Nullable
id Int No
eventId_eventType RealmHistoryEventIdEventTypeCompoundUniqueInput No

RealmHistoryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
eventType SortOrder No
realmId SortOrder No
bastionId SortOrder No
realmOwner SortOrder No
realmName SortOrder No
realmOrder SortOrder No
data SortOrder No
timestamp SortOrder No
transactionHash SortOrder No
_count RealmHistoryCountOrderByAggregateInput No
_avg RealmHistoryAvgOrderByAggregateInput No
_max RealmHistoryMaxOrderByAggregateInput No
_min RealmHistoryMinOrderByAggregateInput No
_sum RealmHistorySumOrderByAggregateInput No

RealmHistoryScalarWhereWithAggregatesInput

Name Type Nullable
AND RealmHistoryScalarWhereWithAggregatesInput | RealmHistoryScalarWhereWithAggregatesInput[] No
OR RealmHistoryScalarWhereWithAggregatesInput[] No
NOT RealmHistoryScalarWhereWithAggregatesInput | RealmHistoryScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
eventId StringWithAggregatesFilter | String No
eventType StringWithAggregatesFilter | String No
realmId IntWithAggregatesFilter | Int No
bastionId IntWithAggregatesFilter | Int No
realmOwner StringWithAggregatesFilter | String No
realmName StringWithAggregatesFilter | String No
realmOrder EnumOrderTypeNullableWithAggregatesFilter | OrderType | Null Yes
data JsonWithAggregatesFilter No
timestamp DateTimeWithAggregatesFilter | DateTime No
transactionHash StringWithAggregatesFilter | String No

CombatHistoryWhereInput

Name Type Nullable
AND CombatHistoryWhereInput | CombatHistoryWhereInput[] No
OR CombatHistoryWhereInput[] No
NOT CombatHistoryWhereInput | CombatHistoryWhereInput[] No
id IntFilter | Int No
eventId StringFilter | String No
eventType StringFilter | String No
attackRealmId IntFilter | Int No
attackRealmOwner StringFilter | String No
attackSquad JsonFilter No
defendRealmId IntFilter | Int No
defendRealmOwner StringFilter | String No
defendSquad JsonFilter No
timestamp DateTimeFilter | DateTime No
transactionHash StringFilter | String No
outcome IntFilter | Int No
attackType IntFilter | Int No
hitPoints IntFilter | Int No

CombatHistoryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
eventType SortOrder No
attackRealmId SortOrder No
attackRealmOwner SortOrder No
attackSquad SortOrder No
defendRealmId SortOrder No
defendRealmOwner SortOrder No
defendSquad SortOrder No
timestamp SortOrder No
transactionHash SortOrder No
outcome SortOrder No
attackType SortOrder No
hitPoints SortOrder No

CombatHistoryWhereUniqueInput

Name Type Nullable
id Int No
defendRealmId_eventId CombatHistoryDefendRealmIdEventIdCompoundUniqueInput No

CombatHistoryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
eventType SortOrder No
attackRealmId SortOrder No
attackRealmOwner SortOrder No
attackSquad SortOrder No
defendRealmId SortOrder No
defendRealmOwner SortOrder No
defendSquad SortOrder No
timestamp SortOrder No
transactionHash SortOrder No
outcome SortOrder No
attackType SortOrder No
hitPoints SortOrder No
_count CombatHistoryCountOrderByAggregateInput No
_avg CombatHistoryAvgOrderByAggregateInput No
_max CombatHistoryMaxOrderByAggregateInput No
_min CombatHistoryMinOrderByAggregateInput No
_sum CombatHistorySumOrderByAggregateInput No

CombatHistoryScalarWhereWithAggregatesInput

Name Type Nullable
AND CombatHistoryScalarWhereWithAggregatesInput | CombatHistoryScalarWhereWithAggregatesInput[] No
OR CombatHistoryScalarWhereWithAggregatesInput[] No
NOT CombatHistoryScalarWhereWithAggregatesInput | CombatHistoryScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
eventId StringWithAggregatesFilter | String No
eventType StringWithAggregatesFilter | String No
attackRealmId IntWithAggregatesFilter | Int No
attackRealmOwner StringWithAggregatesFilter | String No
attackSquad JsonWithAggregatesFilter No
defendRealmId IntWithAggregatesFilter | Int No
defendRealmOwner StringWithAggregatesFilter | String No
defendSquad JsonWithAggregatesFilter No
timestamp DateTimeWithAggregatesFilter | DateTime No
transactionHash StringWithAggregatesFilter | String No
outcome IntWithAggregatesFilter | Int No
attackType IntWithAggregatesFilter | Int No
hitPoints IntWithAggregatesFilter | Int No

ResourceTransferWhereInput

Name Type Nullable
AND ResourceTransferWhereInput | ResourceTransferWhereInput[] No
OR ResourceTransferWhereInput[] No
NOT ResourceTransferWhereInput | ResourceTransferWhereInput[] No
resourceId IntFilter | Int No
eventId StringFilter | String No
blockNumber IntFilter | Int No
transactionNumber IntFilter | Int No
operatorAddress StringFilter | String No
fromAddress StringFilter | String No
toAddress StringFilter | String No
amount StringFilter | String No
amountValue DecimalFilter | Decimal No
transactionHash StringFilter | String No
timestamp DateTimeFilter | DateTime No

ResourceTransferOrderByWithRelationInput

Name Type Nullable
resourceId SortOrder No
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
operatorAddress SortOrder No
fromAddress SortOrder No
toAddress SortOrder No
amount SortOrder No
amountValue SortOrder No
transactionHash SortOrder No
timestamp SortOrder No

ResourceTransferWhereUniqueInput

Name Type Nullable
resourceId_eventId ResourceTransferResourceIdEventIdCompoundUniqueInput No

ResourceTransferOrderByWithAggregationInput

Name Type Nullable
resourceId SortOrder No
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
operatorAddress SortOrder No
fromAddress SortOrder No
toAddress SortOrder No
amount SortOrder No
amountValue SortOrder No
transactionHash SortOrder No
timestamp SortOrder No
_count ResourceTransferCountOrderByAggregateInput No
_avg ResourceTransferAvgOrderByAggregateInput No
_max ResourceTransferMaxOrderByAggregateInput No
_min ResourceTransferMinOrderByAggregateInput No
_sum ResourceTransferSumOrderByAggregateInput No

ResourceTransferScalarWhereWithAggregatesInput

Name Type Nullable
AND ResourceTransferScalarWhereWithAggregatesInput | ResourceTransferScalarWhereWithAggregatesInput[] No
OR ResourceTransferScalarWhereWithAggregatesInput[] No
NOT ResourceTransferScalarWhereWithAggregatesInput | ResourceTransferScalarWhereWithAggregatesInput[] No
resourceId IntWithAggregatesFilter | Int No
eventId StringWithAggregatesFilter | String No
blockNumber IntWithAggregatesFilter | Int No
transactionNumber IntWithAggregatesFilter | Int No
operatorAddress StringWithAggregatesFilter | String No
fromAddress StringWithAggregatesFilter | String No
toAddress StringWithAggregatesFilter | String No
amount StringWithAggregatesFilter | String No
amountValue DecimalWithAggregatesFilter | Decimal No
transactionHash StringWithAggregatesFilter | String No
timestamp DateTimeWithAggregatesFilter | DateTime No

LordTransferWhereInput

Name Type Nullable
AND LordTransferWhereInput | LordTransferWhereInput[] No
OR LordTransferWhereInput[] No
NOT LordTransferWhereInput | LordTransferWhereInput[] No
eventId StringFilter | String No
blockNumber IntFilter | Int No
transactionNumber IntFilter | Int No
fromAddress StringFilter | String No
toAddress StringFilter | String No
amount StringFilter | String No
amountValue DecimalFilter | Decimal No
transactionHash StringFilter | String No
timestamp DateTimeFilter | DateTime No

LordTransferOrderByWithRelationInput

Name Type Nullable
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
fromAddress SortOrder No
toAddress SortOrder No
amount SortOrder No
amountValue SortOrder No
transactionHash SortOrder No
timestamp SortOrder No

LordTransferWhereUniqueInput

Name Type Nullable
eventId String No

LordTransferOrderByWithAggregationInput

Name Type Nullable
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
fromAddress SortOrder No
toAddress SortOrder No
amount SortOrder No
amountValue SortOrder No
transactionHash SortOrder No
timestamp SortOrder No
_count LordTransferCountOrderByAggregateInput No
_avg LordTransferAvgOrderByAggregateInput No
_max LordTransferMaxOrderByAggregateInput No
_min LordTransferMinOrderByAggregateInput No
_sum LordTransferSumOrderByAggregateInput No

LordTransferScalarWhereWithAggregatesInput

Name Type Nullable
AND LordTransferScalarWhereWithAggregatesInput | LordTransferScalarWhereWithAggregatesInput[] No
OR LordTransferScalarWhereWithAggregatesInput[] No
NOT LordTransferScalarWhereWithAggregatesInput | LordTransferScalarWhereWithAggregatesInput[] No
eventId StringWithAggregatesFilter | String No
blockNumber IntWithAggregatesFilter | Int No
transactionNumber IntWithAggregatesFilter | Int No
fromAddress StringWithAggregatesFilter | String No
toAddress StringWithAggregatesFilter | String No
amount StringWithAggregatesFilter | String No
amountValue DecimalWithAggregatesFilter | Decimal No
transactionHash StringWithAggregatesFilter | String No
timestamp DateTimeWithAggregatesFilter | DateTime No

ArmyWhereInput

Name Type Nullable
AND ArmyWhereInput | ArmyWhereInput[] No
OR ArmyWhereInput[] No
NOT ArmyWhereInput | ArmyWhereInput[] No
realmId IntFilter | Int No
armyId IntFilter | Int No
orderId IntFilter | Int No
destinationRealmId IntFilter | Int No
destinationArrivalTime DateTimeNullableFilter | DateTime | Null Yes
armyPacked IntFilter | Int No
lastAttacked DateTimeNullableFilter | DateTime | Null Yes
xp IntFilter | Int No
level IntFilter | Int No
callSign IntFilter | Int No
lightCavalryQty IntFilter | Int No
lightCavalryHealth IntFilter | Int No
heavyCavalryQty IntFilter | Int No
heavyCavalryHealth IntFilter | Int No
archerQty IntFilter | Int No
archerHealth IntFilter | Int No
longbowQty IntFilter | Int No
longbowHealth IntFilter | Int No
mageQty IntFilter | Int No
mageHealth IntFilter | Int No
arcanistQty IntFilter | Int No
arcanistHealth IntFilter | Int No
lightInfantryQty IntFilter | Int No
lightInfantryHealth IntFilter | Int No
heavyInfantryQty IntFilter | Int No
heavyInfantryHealth IntFilter | Int No
bastionId IntFilter | Int No
bastionPastLocation IntFilter | Int No
bastionCurrentLocation IntFilter | Int No
bastionArrivalBlock IntFilter | Int No
ownRealm RealmRelationFilter | RealmWhereInput No

ArmyOrderByWithRelationInput

Name Type Nullable
realmId SortOrder No
armyId SortOrder No
orderId SortOrder No
destinationRealmId SortOrder No
destinationArrivalTime SortOrder No
armyPacked SortOrder No
lastAttacked SortOrder No
xp SortOrder No
level SortOrder No
callSign SortOrder No
lightCavalryQty SortOrder No
lightCavalryHealth SortOrder No
heavyCavalryQty SortOrder No
heavyCavalryHealth SortOrder No
archerQty SortOrder No
archerHealth SortOrder No
longbowQty SortOrder No
longbowHealth SortOrder No
mageQty SortOrder No
mageHealth SortOrder No
arcanistQty SortOrder No
arcanistHealth SortOrder No
lightInfantryQty SortOrder No
lightInfantryHealth SortOrder No
heavyInfantryQty SortOrder No
heavyInfantryHealth SortOrder No
bastionId SortOrder No
bastionPastLocation SortOrder No
bastionCurrentLocation SortOrder No
bastionArrivalBlock SortOrder No
ownRealm RealmOrderByWithRelationInput No

ArmyWhereUniqueInput

Name Type Nullable
realmId_armyId ArmyRealmIdArmyIdCompoundUniqueInput No

ArmyOrderByWithAggregationInput

Name Type Nullable
realmId SortOrder No
armyId SortOrder No
orderId SortOrder No
destinationRealmId SortOrder No
destinationArrivalTime SortOrder No
armyPacked SortOrder No
lastAttacked SortOrder No
xp SortOrder No
level SortOrder No
callSign SortOrder No
lightCavalryQty SortOrder No
lightCavalryHealth SortOrder No
heavyCavalryQty SortOrder No
heavyCavalryHealth SortOrder No
archerQty SortOrder No
archerHealth SortOrder No
longbowQty SortOrder No
longbowHealth SortOrder No
mageQty SortOrder No
mageHealth SortOrder No
arcanistQty SortOrder No
arcanistHealth SortOrder No
lightInfantryQty SortOrder No
lightInfantryHealth SortOrder No
heavyInfantryQty SortOrder No
heavyInfantryHealth SortOrder No
bastionId SortOrder No
bastionPastLocation SortOrder No
bastionCurrentLocation SortOrder No
bastionArrivalBlock SortOrder No
_count ArmyCountOrderByAggregateInput No
_avg ArmyAvgOrderByAggregateInput No
_max ArmyMaxOrderByAggregateInput No
_min ArmyMinOrderByAggregateInput No
_sum ArmySumOrderByAggregateInput No

ArmyScalarWhereWithAggregatesInput

Name Type Nullable
AND ArmyScalarWhereWithAggregatesInput | ArmyScalarWhereWithAggregatesInput[] No
OR ArmyScalarWhereWithAggregatesInput[] No
NOT ArmyScalarWhereWithAggregatesInput | ArmyScalarWhereWithAggregatesInput[] No
realmId IntWithAggregatesFilter | Int No
armyId IntWithAggregatesFilter | Int No
orderId IntWithAggregatesFilter | Int No
destinationRealmId IntWithAggregatesFilter | Int No
destinationArrivalTime DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
armyPacked IntWithAggregatesFilter | Int No
lastAttacked DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
xp IntWithAggregatesFilter | Int No
level IntWithAggregatesFilter | Int No
callSign IntWithAggregatesFilter | Int No
lightCavalryQty IntWithAggregatesFilter | Int No
lightCavalryHealth IntWithAggregatesFilter | Int No
heavyCavalryQty IntWithAggregatesFilter | Int No
heavyCavalryHealth IntWithAggregatesFilter | Int No
archerQty IntWithAggregatesFilter | Int No
archerHealth IntWithAggregatesFilter | Int No
longbowQty IntWithAggregatesFilter | Int No
longbowHealth IntWithAggregatesFilter | Int No
mageQty IntWithAggregatesFilter | Int No
mageHealth IntWithAggregatesFilter | Int No
arcanistQty IntWithAggregatesFilter | Int No
arcanistHealth IntWithAggregatesFilter | Int No
lightInfantryQty IntWithAggregatesFilter | Int No
lightInfantryHealth IntWithAggregatesFilter | Int No
heavyInfantryQty IntWithAggregatesFilter | Int No
heavyInfantryHealth IntWithAggregatesFilter | Int No
bastionId IntWithAggregatesFilter | Int No
bastionPastLocation IntWithAggregatesFilter | Int No
bastionCurrentLocation IntWithAggregatesFilter | Int No
bastionArrivalBlock IntWithAggregatesFilter | Int No

BastionWhereInput

Name Type Nullable
AND BastionWhereInput | BastionWhereInput[] No
OR BastionWhereInput[] No
NOT BastionWhereInput | BastionWhereInput[] No
bastionId IntFilter | Int No
longitude FloatFilter | Float No
latitude FloatFilter | Float No

BastionOrderByWithRelationInput

Name Type Nullable
bastionId SortOrder No
longitude SortOrder No
latitude SortOrder No

BastionWhereUniqueInput

Name Type Nullable
bastionId Int No

BastionOrderByWithAggregationInput

Name Type Nullable
bastionId SortOrder No
longitude SortOrder No
latitude SortOrder No
_count BastionCountOrderByAggregateInput No
_avg BastionAvgOrderByAggregateInput No
_max BastionMaxOrderByAggregateInput No
_min BastionMinOrderByAggregateInput No
_sum BastionSumOrderByAggregateInput No


BastionLocationWhereInput

Name Type Nullable
AND BastionLocationWhereInput | BastionLocationWhereInput[] No
OR BastionLocationWhereInput[] No
NOT BastionLocationWhereInput | BastionLocationWhereInput[] No
bastionId IntFilter | Int No
locationId IntFilter | Int No
defendingOrderId IntFilter | Int No
takenBlock IntFilter | Int No

BastionLocationOrderByWithRelationInput

Name Type Nullable
bastionId SortOrder No
locationId SortOrder No
defendingOrderId SortOrder No
takenBlock SortOrder No

BastionLocationWhereUniqueInput

Name Type Nullable
bastionId_locationId BastionLocationBastionIdLocationIdCompoundUniqueInput No

BastionLocationOrderByWithAggregationInput

Name Type Nullable
bastionId SortOrder No
locationId SortOrder No
defendingOrderId SortOrder No
takenBlock SortOrder No
_count BastionLocationCountOrderByAggregateInput No
_avg BastionLocationAvgOrderByAggregateInput No
_max BastionLocationMaxOrderByAggregateInput No
_min BastionLocationMinOrderByAggregateInput No
_sum BastionLocationSumOrderByAggregateInput No


TravelWhereInput

Name Type Nullable
AND TravelWhereInput | TravelWhereInput[] No
OR TravelWhereInput[] No
NOT TravelWhereInput | TravelWhereInput[] No
eventId StringFilter | String No
contractId IntFilter | Int No
tokenId IntFilter | Int No
nestedId IntFilter | Int No
locationContractId IntFilter | Int No
locationTokenId IntFilter | Int No
locationNestedId IntFilter | Int No
destinationContractId IntFilter | Int No
destinationTokenId IntFilter | Int No
destinationNestedId IntFilter | Int No
destinationArrivalTime DateTimeFilter | DateTime No
timestamp DateTimeFilter | DateTime No

TravelOrderByWithRelationInput

Name Type Nullable
eventId SortOrder No
contractId SortOrder No
tokenId SortOrder No
nestedId SortOrder No
locationContractId SortOrder No
locationTokenId SortOrder No
locationNestedId SortOrder No
destinationContractId SortOrder No
destinationTokenId SortOrder No
destinationNestedId SortOrder No
destinationArrivalTime SortOrder No
timestamp SortOrder No

TravelWhereUniqueInput

Name Type Nullable
eventId String No

TravelOrderByWithAggregationInput

Name Type Nullable
eventId SortOrder No
contractId SortOrder No
tokenId SortOrder No
nestedId SortOrder No
locationContractId SortOrder No
locationTokenId SortOrder No
locationNestedId SortOrder No
destinationContractId SortOrder No
destinationTokenId SortOrder No
destinationNestedId SortOrder No
destinationArrivalTime SortOrder No
timestamp SortOrder No
_count TravelCountOrderByAggregateInput No
_avg TravelAvgOrderByAggregateInput No
_max TravelMaxOrderByAggregateInput No
_min TravelMinOrderByAggregateInput No
_sum TravelSumOrderByAggregateInput No

TravelScalarWhereWithAggregatesInput

Name Type Nullable
AND TravelScalarWhereWithAggregatesInput | TravelScalarWhereWithAggregatesInput[] No
OR TravelScalarWhereWithAggregatesInput[] No
NOT TravelScalarWhereWithAggregatesInput | TravelScalarWhereWithAggregatesInput[] No
eventId StringWithAggregatesFilter | String No
contractId IntWithAggregatesFilter | Int No
tokenId IntWithAggregatesFilter | Int No
nestedId IntWithAggregatesFilter | Int No
locationContractId IntWithAggregatesFilter | Int No
locationTokenId IntWithAggregatesFilter | Int No
locationNestedId IntWithAggregatesFilter | Int No
destinationContractId IntWithAggregatesFilter | Int No
destinationTokenId IntWithAggregatesFilter | Int No
destinationNestedId IntWithAggregatesFilter | Int No
destinationArrivalTime DateTimeWithAggregatesFilter | DateTime No
timestamp DateTimeWithAggregatesFilter | DateTime No

ExchangeEventWhereInput

Name Type Nullable
AND ExchangeEventWhereInput | ExchangeEventWhereInput[] No
OR ExchangeEventWhereInput[] No
NOT ExchangeEventWhereInput | ExchangeEventWhereInput[] No
eventId StringFilter | String No
type EnumExchangeEventTypeFilter | ExchangeEventType No
resourceId IntFilter | Int No
address StringFilter | String No
currencyAmount StringFilter | String No
currencyAmountValue DecimalFilter | Decimal No
resourceAmount StringFilter | String No
resourceAmountValue DecimalFilter | Decimal No
timestamp DateTimeFilter | DateTime No

ExchangeEventOrderByWithRelationInput

Name Type Nullable
eventId SortOrder No
type SortOrder No
resourceId SortOrder No
address SortOrder No
currencyAmount SortOrder No
currencyAmountValue SortOrder No
resourceAmount SortOrder No
resourceAmountValue SortOrder No
timestamp SortOrder No

ExchangeEventWhereUniqueInput

Name Type Nullable
eventId String No

ExchangeEventOrderByWithAggregationInput

Name Type Nullable
eventId SortOrder No
type SortOrder No
resourceId SortOrder No
address SortOrder No
currencyAmount SortOrder No
currencyAmountValue SortOrder No
resourceAmount SortOrder No
resourceAmountValue SortOrder No
timestamp SortOrder No
_count ExchangeEventCountOrderByAggregateInput No
_avg ExchangeEventAvgOrderByAggregateInput No
_max ExchangeEventMaxOrderByAggregateInput No
_min ExchangeEventMinOrderByAggregateInput No
_sum ExchangeEventSumOrderByAggregateInput No

ExchangeEventScalarWhereWithAggregatesInput

Name Type Nullable
AND ExchangeEventScalarWhereWithAggregatesInput | ExchangeEventScalarWhereWithAggregatesInput[] No
OR ExchangeEventScalarWhereWithAggregatesInput[] No
NOT ExchangeEventScalarWhereWithAggregatesInput | ExchangeEventScalarWhereWithAggregatesInput[] No
eventId StringWithAggregatesFilter | String No
type EnumExchangeEventTypeWithAggregatesFilter | ExchangeEventType No
resourceId IntWithAggregatesFilter | Int No
address StringWithAggregatesFilter | String No
currencyAmount StringWithAggregatesFilter | String No
currencyAmountValue DecimalWithAggregatesFilter | Decimal No
resourceAmount StringWithAggregatesFilter | String No
resourceAmountValue DecimalWithAggregatesFilter | Decimal No
timestamp DateTimeWithAggregatesFilter | DateTime No

BuildArmyEventWhereInput

Name Type Nullable
AND BuildArmyEventWhereInput | BuildArmyEventWhereInput[] No
OR BuildArmyEventWhereInput[] No
NOT BuildArmyEventWhereInput | BuildArmyEventWhereInput[] No
eventId StringFilter | String No
realmId IntFilter | Int No
armyId IntFilter | Int No
lightCavalryQty IntFilter | Int No
lightCavalryHealth IntFilter | Int No
heavyCavalryQty IntFilter | Int No
heavyCavalryHealth IntFilter | Int No
archerQty IntFilter | Int No
archerHealth IntFilter | Int No
longbowQty IntFilter | Int No
longbowHealth IntFilter | Int No
mageQty IntFilter | Int No
mageHealth IntFilter | Int No
arcanistQty IntFilter | Int No
arcanistHealth IntFilter | Int No
lightInfantryQty IntFilter | Int No
lightInfantryHealth IntFilter | Int No
heavyInfantryQty IntFilter | Int No
heavyInfantryHealth IntFilter | Int No
timestamp DateTimeFilter | DateTime No

BuildArmyEventOrderByWithRelationInput

Name Type Nullable
eventId SortOrder No
realmId SortOrder No
armyId SortOrder No
lightCavalryQty SortOrder No
lightCavalryHealth SortOrder No
heavyCavalryQty SortOrder No
heavyCavalryHealth SortOrder No
archerQty SortOrder No
archerHealth SortOrder No
longbowQty SortOrder No
longbowHealth SortOrder No
mageQty SortOrder No
mageHealth SortOrder No
arcanistQty SortOrder No
arcanistHealth SortOrder No
lightInfantryQty SortOrder No
lightInfantryHealth SortOrder No
heavyInfantryQty SortOrder No
heavyInfantryHealth SortOrder No
timestamp SortOrder No

BuildArmyEventWhereUniqueInput

Name Type Nullable
eventId String No

BuildArmyEventOrderByWithAggregationInput

Name Type Nullable
eventId SortOrder No
realmId SortOrder No
armyId SortOrder No
lightCavalryQty SortOrder No
lightCavalryHealth SortOrder No
heavyCavalryQty SortOrder No
heavyCavalryHealth SortOrder No
archerQty SortOrder No
archerHealth SortOrder No
longbowQty SortOrder No
longbowHealth SortOrder No
mageQty SortOrder No
mageHealth SortOrder No
arcanistQty SortOrder No
arcanistHealth SortOrder No
lightInfantryQty SortOrder No
lightInfantryHealth SortOrder No
heavyInfantryQty SortOrder No
heavyInfantryHealth SortOrder No
timestamp SortOrder No
_count BuildArmyEventCountOrderByAggregateInput No
_avg BuildArmyEventAvgOrderByAggregateInput No
_max BuildArmyEventMaxOrderByAggregateInput No
_min BuildArmyEventMinOrderByAggregateInput No
_sum BuildArmyEventSumOrderByAggregateInput No

BuildArmyEventScalarWhereWithAggregatesInput

Name Type Nullable
AND BuildArmyEventScalarWhereWithAggregatesInput | BuildArmyEventScalarWhereWithAggregatesInput[] No
OR BuildArmyEventScalarWhereWithAggregatesInput[] No
NOT BuildArmyEventScalarWhereWithAggregatesInput | BuildArmyEventScalarWhereWithAggregatesInput[] No
eventId StringWithAggregatesFilter | String No
realmId IntWithAggregatesFilter | Int No
armyId IntWithAggregatesFilter | Int No
lightCavalryQty IntWithAggregatesFilter | Int No
lightCavalryHealth IntWithAggregatesFilter | Int No
heavyCavalryQty IntWithAggregatesFilter | Int No
heavyCavalryHealth IntWithAggregatesFilter | Int No
archerQty IntWithAggregatesFilter | Int No
archerHealth IntWithAggregatesFilter | Int No
longbowQty IntWithAggregatesFilter | Int No
longbowHealth IntWithAggregatesFilter | Int No
mageQty IntWithAggregatesFilter | Int No
mageHealth IntWithAggregatesFilter | Int No
arcanistQty IntWithAggregatesFilter | Int No
arcanistHealth IntWithAggregatesFilter | Int No
lightInfantryQty IntWithAggregatesFilter | Int No
lightInfantryHealth IntWithAggregatesFilter | Int No
heavyInfantryQty IntWithAggregatesFilter | Int No
heavyInfantryHealth IntWithAggregatesFilter | Int No
timestamp DateTimeWithAggregatesFilter | DateTime No

BuildBuildingEventWhereInput

Name Type Nullable
AND BuildBuildingEventWhereInput | BuildBuildingEventWhereInput[] No
OR BuildBuildingEventWhereInput[] No
NOT BuildBuildingEventWhereInput | BuildBuildingEventWhereInput[] No
eventId StringFilter | String No
buildingId IntFilter | Int No
realmId IntFilter | Int No
buildingIntegrity IntFilter | Int No
count IntFilter | Int No
timestamp DateTimeFilter | DateTime No

BuildBuildingEventOrderByWithRelationInput

Name Type Nullable
eventId SortOrder No
buildingId SortOrder No
realmId SortOrder No
buildingIntegrity SortOrder No
count SortOrder No
timestamp SortOrder No

BuildBuildingEventWhereUniqueInput

Name Type Nullable
eventId String No

BuildBuildingEventOrderByWithAggregationInput

Name Type Nullable
eventId SortOrder No
buildingId SortOrder No
realmId SortOrder No
buildingIntegrity SortOrder No
count SortOrder No
timestamp SortOrder No
_count BuildBuildingEventCountOrderByAggregateInput No
_avg BuildBuildingEventAvgOrderByAggregateInput No
_max BuildBuildingEventMaxOrderByAggregateInput No
_min BuildBuildingEventMinOrderByAggregateInput No
_sum BuildBuildingEventSumOrderByAggregateInput No


WalletCreateInput

Name Type Nullable
address String No
realmsL1 RealmCreateNestedManyWithoutWalletInput No
realmsL2 RealmCreateNestedManyWithoutWalletL2Input No
realmsSettled RealmCreateNestedManyWithoutWalletSettledInput No

WalletUncheckedCreateInput

Name Type Nullable
id Int No
address String No
realmsL1 RealmUncheckedCreateNestedManyWithoutWalletInput No
realmsL2 RealmUncheckedCreateNestedManyWithoutWalletL2Input No
realmsSettled RealmUncheckedCreateNestedManyWithoutWalletSettledInput No



WalletCreateManyInput

Name Type Nullable
id Int No
address String No

WalletUpdateManyMutationInput

Name Type Nullable
address String | StringFieldUpdateOperationsInput No

WalletUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
address String | StringFieldUpdateOperationsInput No

RealmCreateInput

Name Type Nullable
realmId Int No
name String | Null Yes
wallet WalletCreateNestedOneWithoutRealmsL1Input No
bridgedOwner String | Null Yes
walletL2 WalletCreateNestedOneWithoutRealmsL2Input No
walletSettled WalletCreateNestedOneWithoutRealmsSettledInput No
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingCreateNestedManyWithoutRealmInput No
resources ResourceCreateNestedManyWithoutRealmInput No
relicsOwned RelicCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitCreateNestedManyWithoutRealmInput No
squad TroopCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyCreateNestedManyWithoutOwnRealmInput No

RealmUncheckedCreateInput

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
owner String | Null Yes
bridgedOwner String | Null Yes
ownerL2 String | Null Yes
settledOwner String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicUncheckedCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingUncheckedCreateNestedManyWithoutRealmInput No
resources ResourceUncheckedCreateNestedManyWithoutRealmInput No
relicsOwned RelicUncheckedCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitUncheckedCreateNestedManyWithoutRealmInput No
squad TroopUncheckedCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyUncheckedCreateNestedManyWithoutOwnRealmInput No

RealmUpdateInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
wallet WalletUpdateOneWithoutRealmsL1NestedInput No
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
walletL2 WalletUpdateOneWithoutRealmsL2NestedInput No
walletSettled WalletUpdateOneWithoutRealmsSettledNestedInput No
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUpdateManyWithoutRealmNestedInput No
resources ResourceUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUpdateManyWithoutRealmNestedInput No
squad TroopUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUpdateManyWithoutOwnRealmNestedInput No

RealmUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerL2 String | NullableStringFieldUpdateOperationsInput | Null Yes
settledOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUncheckedUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUncheckedUpdateManyWithoutRealmNestedInput No
resources ResourceUncheckedUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUncheckedUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUncheckedUpdateManyWithoutRealmNestedInput No
squad TroopUncheckedUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUncheckedUpdateManyWithoutOwnRealmNestedInput No

RealmCreateManyInput

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
owner String | Null Yes
bridgedOwner String | Null Yes
ownerL2 String | Null Yes
settledOwner String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
orderType OrderType | Null Yes
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No

RealmUpdateManyMutationInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No

RealmUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerL2 String | NullableStringFieldUpdateOperationsInput | Null Yes
settledOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No

BuildingCreateInput

Name Type Nullable
buildingId Int No
eventId String No
buildingIntegrity Int No
realm RealmCreateNestedOneWithoutBuildingsInput No
builds BuildingCreatebuildsInput | String No

BuildingUncheckedCreateInput

Name Type Nullable
id Int No
buildingId Int No
realmId Int | Null Yes
eventId String No
buildingIntegrity Int No
builds BuildingCreatebuildsInput | String No

BuildingUpdateInput

Name Type Nullable
buildingId Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
buildingIntegrity Int | IntFieldUpdateOperationsInput No
realm RealmUpdateOneWithoutBuildingsNestedInput No
builds BuildingUpdatebuildsInput | String No

BuildingUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
buildingId Int | IntFieldUpdateOperationsInput No
realmId Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventId String | StringFieldUpdateOperationsInput No
buildingIntegrity Int | IntFieldUpdateOperationsInput No
builds BuildingUpdatebuildsInput | String No

BuildingCreateManyInput

Name Type Nullable
id Int No
buildingId Int No
realmId Int | Null Yes
eventId String No
buildingIntegrity Int No
builds BuildingCreatebuildsInput | String No

BuildingUpdateManyMutationInput

Name Type Nullable
buildingId Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
buildingIntegrity Int | IntFieldUpdateOperationsInput No
builds BuildingUpdatebuildsInput | String No

BuildingUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
buildingId Int | IntFieldUpdateOperationsInput No
realmId Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventId String | StringFieldUpdateOperationsInput No
buildingIntegrity Int | IntFieldUpdateOperationsInput No
builds BuildingUpdatebuildsInput | String No

FoodCreateInput

Name Type Nullable
realmId Int No
buildingId Int No
eventId String No
qty Int No
harvests Int No
createdAt DateTime No
updatedAt DateTime No

FoodUncheckedCreateInput

Name Type Nullable
id Int No
realmId Int No
buildingId Int No
eventId String No
qty Int No
harvests Int No
createdAt DateTime No
updatedAt DateTime No

FoodUpdateInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
buildingId Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
qty Int | IntFieldUpdateOperationsInput No
harvests Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

FoodUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
buildingId Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
qty Int | IntFieldUpdateOperationsInput No
harvests Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

FoodCreateManyInput

Name Type Nullable
id Int No
realmId Int No
buildingId Int No
eventId String No
qty Int No
harvests Int No
createdAt DateTime No
updatedAt DateTime No

FoodUpdateManyMutationInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
buildingId Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
qty Int | IntFieldUpdateOperationsInput No
harvests Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

FoodUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
buildingId Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
qty Int | IntFieldUpdateOperationsInput No
harvests Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

RelicCreateInput

Name Type Nullable
originRealm RealmCreateNestedOneWithoutRelicInput No
realmHolder RealmCreateNestedOneWithoutRelicsOwnedInput No
isAnnexed Boolean No

RelicUncheckedCreateInput

Name Type Nullable
realmId Int No
heldByRealm Int No
isAnnexed Boolean No

RelicUpdateInput

Name Type Nullable
originRealm RealmUpdateOneWithoutRelicNestedInput No
realmHolder RealmUpdateOneWithoutRelicsOwnedNestedInput No
isAnnexed Boolean | BoolFieldUpdateOperationsInput No

RelicUncheckedUpdateInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
heldByRealm Int | IntFieldUpdateOperationsInput No
isAnnexed Boolean | BoolFieldUpdateOperationsInput No

RelicCreateManyInput

Name Type Nullable
realmId Int No
heldByRealm Int No
isAnnexed Boolean No

RelicUpdateManyMutationInput

Name Type Nullable
isAnnexed Boolean | BoolFieldUpdateOperationsInput No

RelicUncheckedUpdateManyInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
heldByRealm Int | IntFieldUpdateOperationsInput No
isAnnexed Boolean | BoolFieldUpdateOperationsInput No

BuildingRealmTraitConstraintCreateInput

Name Type Nullable
buildingId Int No
traitType RealmTraitType No
max Int No

BuildingRealmTraitConstraintUncheckedCreateInput

Name Type Nullable
buildingId Int No
traitType RealmTraitType No
max Int No

BuildingRealmTraitConstraintUpdateInput

Name Type Nullable
buildingId Int | IntFieldUpdateOperationsInput No
traitType RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput No
max Int | IntFieldUpdateOperationsInput No

BuildingRealmTraitConstraintUncheckedUpdateInput

Name Type Nullable
buildingId Int | IntFieldUpdateOperationsInput No
traitType RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput No
max Int | IntFieldUpdateOperationsInput No

BuildingRealmTraitConstraintCreateManyInput

Name Type Nullable
buildingId Int No
traitType RealmTraitType No
max Int No

BuildingRealmTraitConstraintUpdateManyMutationInput

Name Type Nullable
buildingId Int | IntFieldUpdateOperationsInput No
traitType RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput No
max Int | IntFieldUpdateOperationsInput No

BuildingRealmTraitConstraintUncheckedUpdateManyInput

Name Type Nullable
buildingId Int | IntFieldUpdateOperationsInput No
traitType RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput No
max Int | IntFieldUpdateOperationsInput No

ResourceCreateInput

Name Type Nullable
resourceId Int No
realm RealmCreateNestedOneWithoutResourcesInput No
labor LaborCreateNestedOneWithoutResoureInput No
level Int No
upgrades ResourceCreateupgradesInput | String No

ResourceUncheckedCreateInput

Name Type Nullable
id Int No
resourceId Int No
realmId Int | Null Yes
labor LaborUncheckedCreateNestedOneWithoutResoureInput No
level Int No
upgrades ResourceCreateupgradesInput | String No

ResourceUpdateInput

Name Type Nullable
resourceId Int | IntFieldUpdateOperationsInput No
realm RealmUpdateOneWithoutResourcesNestedInput No
labor LaborUpdateOneWithoutResoureNestedInput No
level Int | IntFieldUpdateOperationsInput No
upgrades ResourceUpdateupgradesInput | String No

ResourceUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
resourceId Int | IntFieldUpdateOperationsInput No
realmId Int | NullableIntFieldUpdateOperationsInput | Null Yes
labor LaborUncheckedUpdateOneWithoutResoureNestedInput No
level Int | IntFieldUpdateOperationsInput No
upgrades ResourceUpdateupgradesInput | String No

ResourceCreateManyInput

Name Type Nullable
id Int No
resourceId Int No
realmId Int | Null Yes
level Int No
upgrades ResourceCreateupgradesInput | String No

ResourceUpdateManyMutationInput

Name Type Nullable
resourceId Int | IntFieldUpdateOperationsInput No
level Int | IntFieldUpdateOperationsInput No
upgrades ResourceUpdateupgradesInput | String No

ResourceUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
resourceId Int | IntFieldUpdateOperationsInput No
realmId Int | NullableIntFieldUpdateOperationsInput | Null Yes
level Int | IntFieldUpdateOperationsInput No
upgrades ResourceUpdateupgradesInput | String No

LaborCreateInput

Name Type Nullable
vaultBalance DateTime | Null Yes
balance DateTime | Null Yes
lastUpdate DateTime | Null Yes
lastEventId String | Null Yes
qtyBuilt Int No
createdAt DateTime No
updatedAt DateTime No
resoure ResourceCreateNestedOneWithoutLaborInput No

LaborUncheckedCreateInput

Name Type Nullable
id Int No
realmId Int No
resourceId Int No
vaultBalance DateTime | Null Yes
balance DateTime | Null Yes
lastUpdate DateTime | Null Yes
lastEventId String | Null Yes
qtyBuilt Int No
createdAt DateTime No
updatedAt DateTime No

LaborUpdateInput

Name Type Nullable
vaultBalance DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
balance DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastUpdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastEventId String | NullableStringFieldUpdateOperationsInput | Null Yes
qtyBuilt Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
resoure ResourceUpdateOneRequiredWithoutLaborNestedInput No

LaborUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
resourceId Int | IntFieldUpdateOperationsInput No
vaultBalance DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
balance DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastUpdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastEventId String | NullableStringFieldUpdateOperationsInput | Null Yes
qtyBuilt Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

LaborCreateManyInput

Name Type Nullable
id Int No
realmId Int No
resourceId Int No
vaultBalance DateTime | Null Yes
balance DateTime | Null Yes
lastUpdate DateTime | Null Yes
lastEventId String | Null Yes
qtyBuilt Int No
createdAt DateTime No
updatedAt DateTime No

LaborUpdateManyMutationInput

Name Type Nullable
vaultBalance DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
balance DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastUpdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastEventId String | NullableStringFieldUpdateOperationsInput | Null Yes
qtyBuilt Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

LaborUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
resourceId Int | IntFieldUpdateOperationsInput No
vaultBalance DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
balance DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastUpdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastEventId String | NullableStringFieldUpdateOperationsInput | Null Yes
qtyBuilt Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

WalletBalanceCreateInput

Name Type Nullable
address String No
tokenId Int No
amount String No
lastEventId String | Null Yes

WalletBalanceUncheckedCreateInput

Name Type Nullable
id Int No
address String No
tokenId Int No
amount String No
lastEventId String | Null Yes

WalletBalanceUpdateInput

Name Type Nullable
address String | StringFieldUpdateOperationsInput No
tokenId Int | IntFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
lastEventId String | NullableStringFieldUpdateOperationsInput | Null Yes

WalletBalanceUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
address String | StringFieldUpdateOperationsInput No
tokenId Int | IntFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
lastEventId String | NullableStringFieldUpdateOperationsInput | Null Yes

WalletBalanceCreateManyInput

Name Type Nullable
id Int No
address String No
tokenId Int No
amount String No
lastEventId String | Null Yes

WalletBalanceUpdateManyMutationInput

Name Type Nullable
address String | StringFieldUpdateOperationsInput No
tokenId Int | IntFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
lastEventId String | NullableStringFieldUpdateOperationsInput | Null Yes

WalletBalanceUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
address String | StringFieldUpdateOperationsInput No
tokenId Int | IntFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
lastEventId String | NullableStringFieldUpdateOperationsInput | Null Yes

RealmTraitCreateInput

Name Type Nullable
type RealmTraitType No
qty Int No
realm RealmCreateNestedOneWithoutTraitsInput No

RealmTraitUncheckedCreateInput

Name Type Nullable
type RealmTraitType No
qty Int No
realmId Int No


RealmTraitUncheckedUpdateInput

Name Type Nullable
type RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput No
qty Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No

RealmTraitCreateManyInput

Name Type Nullable
type RealmTraitType No
qty Int No
realmId Int No

RealmTraitUpdateManyMutationInput

Name Type Nullable
type RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput No
qty Int | IntFieldUpdateOperationsInput No

RealmTraitUncheckedUpdateManyInput

Name Type Nullable
type RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput No
qty Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No

TroopCreateInput

Name Type Nullable
troopId Int No
index Int No
type Int No
tier Int No
building Int No
agility Int No
attack Int No
armor Int No
vitality Int No
wisdom Int No
squadSlot Int No
timestamp DateTime | Null Yes
Realm RealmCreateNestedOneWithoutSquadInput No

TroopUncheckedCreateInput

Name Type Nullable
realmId Int No
troopId Int No
index Int No
type Int No
tier Int No
building Int No
agility Int No
attack Int No
armor Int No
vitality Int No
wisdom Int No
squadSlot Int No
timestamp DateTime | Null Yes


TroopUncheckedUpdateInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
troopId Int | IntFieldUpdateOperationsInput No
index Int | IntFieldUpdateOperationsInput No
type Int | IntFieldUpdateOperationsInput No
tier Int | IntFieldUpdateOperationsInput No
building Int | IntFieldUpdateOperationsInput No
agility Int | IntFieldUpdateOperationsInput No
attack Int | IntFieldUpdateOperationsInput No
armor Int | IntFieldUpdateOperationsInput No
vitality Int | IntFieldUpdateOperationsInput No
wisdom Int | IntFieldUpdateOperationsInput No
squadSlot Int | IntFieldUpdateOperationsInput No
timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

TroopCreateManyInput

Name Type Nullable
realmId Int No
troopId Int No
index Int No
type Int No
tier Int No
building Int No
agility Int No
attack Int No
armor Int No
vitality Int No
wisdom Int No
squadSlot Int No
timestamp DateTime | Null Yes

TroopUpdateManyMutationInput

Name Type Nullable
troopId Int | IntFieldUpdateOperationsInput No
index Int | IntFieldUpdateOperationsInput No
type Int | IntFieldUpdateOperationsInput No
tier Int | IntFieldUpdateOperationsInput No
building Int | IntFieldUpdateOperationsInput No
agility Int | IntFieldUpdateOperationsInput No
attack Int | IntFieldUpdateOperationsInput No
armor Int | IntFieldUpdateOperationsInput No
vitality Int | IntFieldUpdateOperationsInput No
wisdom Int | IntFieldUpdateOperationsInput No
squadSlot Int | IntFieldUpdateOperationsInput No
timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

TroopUncheckedUpdateManyInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
troopId Int | IntFieldUpdateOperationsInput No
index Int | IntFieldUpdateOperationsInput No
type Int | IntFieldUpdateOperationsInput No
tier Int | IntFieldUpdateOperationsInput No
building Int | IntFieldUpdateOperationsInput No
agility Int | IntFieldUpdateOperationsInput No
attack Int | IntFieldUpdateOperationsInput No
armor Int | IntFieldUpdateOperationsInput No
vitality Int | IntFieldUpdateOperationsInput No
wisdom Int | IntFieldUpdateOperationsInput No
squadSlot Int | IntFieldUpdateOperationsInput No
timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

DesiegeCreateInput

Name Type Nullable
gameId Int No
winner Int | Null Yes
attackedTokens Int | Null Yes
defendedTokens Int | Null Yes
damageInflicted Int | Null Yes
eventIndexed String | Null Yes
initialHealth Int | Null Yes
startBlock Int No
endBlock Int No
startedOn DateTime | Null Yes

DesiegeUncheckedCreateInput

Name Type Nullable
id Int No
gameId Int No
winner Int | Null Yes
attackedTokens Int | Null Yes
defendedTokens Int | Null Yes
damageInflicted Int | Null Yes
eventIndexed String | Null Yes
initialHealth Int | Null Yes
startBlock Int No
endBlock Int No
startedOn DateTime | Null Yes

DesiegeUpdateInput

Name Type Nullable
gameId Int | IntFieldUpdateOperationsInput No
winner Int | NullableIntFieldUpdateOperationsInput | Null Yes
attackedTokens Int | NullableIntFieldUpdateOperationsInput | Null Yes
defendedTokens Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageInflicted Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes
initialHealth Int | NullableIntFieldUpdateOperationsInput | Null Yes
startBlock Int | IntFieldUpdateOperationsInput No
endBlock Int | IntFieldUpdateOperationsInput No
startedOn DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

DesiegeUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
gameId Int | IntFieldUpdateOperationsInput No
winner Int | NullableIntFieldUpdateOperationsInput | Null Yes
attackedTokens Int | NullableIntFieldUpdateOperationsInput | Null Yes
defendedTokens Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageInflicted Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes
initialHealth Int | NullableIntFieldUpdateOperationsInput | Null Yes
startBlock Int | IntFieldUpdateOperationsInput No
endBlock Int | IntFieldUpdateOperationsInput No
startedOn DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

DesiegeCreateManyInput

Name Type Nullable
id Int No
gameId Int No
winner Int | Null Yes
attackedTokens Int | Null Yes
defendedTokens Int | Null Yes
damageInflicted Int | Null Yes
eventIndexed String | Null Yes
initialHealth Int | Null Yes
startBlock Int No
endBlock Int No
startedOn DateTime | Null Yes

DesiegeUpdateManyMutationInput

Name Type Nullable
gameId Int | IntFieldUpdateOperationsInput No
winner Int | NullableIntFieldUpdateOperationsInput | Null Yes
attackedTokens Int | NullableIntFieldUpdateOperationsInput | Null Yes
defendedTokens Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageInflicted Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes
initialHealth Int | NullableIntFieldUpdateOperationsInput | Null Yes
startBlock Int | IntFieldUpdateOperationsInput No
endBlock Int | IntFieldUpdateOperationsInput No
startedOn DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

DesiegeUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
gameId Int | IntFieldUpdateOperationsInput No
winner Int | NullableIntFieldUpdateOperationsInput | Null Yes
attackedTokens Int | NullableIntFieldUpdateOperationsInput | Null Yes
defendedTokens Int | NullableIntFieldUpdateOperationsInput | Null Yes
damageInflicted Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes
initialHealth Int | NullableIntFieldUpdateOperationsInput | Null Yes
startBlock Int | IntFieldUpdateOperationsInput No
endBlock Int | IntFieldUpdateOperationsInput No
startedOn DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

DesiegeActionCreateInput

Name Type Nullable
gameId Int No
account String No
amount Int No
amountBoosted Int No
tokenOffset Int No

DesiegeActionUncheckedCreateInput

Name Type Nullable
id Int No
gameId Int No
account String No
amount Int No
amountBoosted Int No
tokenOffset Int No

DesiegeActionUpdateInput

Name Type Nullable
gameId Int | IntFieldUpdateOperationsInput No
account String | StringFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
amountBoosted Int | IntFieldUpdateOperationsInput No
tokenOffset Int | IntFieldUpdateOperationsInput No

DesiegeActionUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
gameId Int | IntFieldUpdateOperationsInput No
account String | StringFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
amountBoosted Int | IntFieldUpdateOperationsInput No
tokenOffset Int | IntFieldUpdateOperationsInput No

DesiegeActionCreateManyInput

Name Type Nullable
id Int No
gameId Int No
account String No
amount Int No
amountBoosted Int No
tokenOffset Int No

DesiegeActionUpdateManyMutationInput

Name Type Nullable
gameId Int | IntFieldUpdateOperationsInput No
account String | StringFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
amountBoosted Int | IntFieldUpdateOperationsInput No
tokenOffset Int | IntFieldUpdateOperationsInput No

DesiegeActionUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
gameId Int | IntFieldUpdateOperationsInput No
account String | StringFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
amountBoosted Int | IntFieldUpdateOperationsInput No
tokenOffset Int | IntFieldUpdateOperationsInput No

EventCreateInput

Name Type Nullable
eventId String No
blockNumber Int No
transactionNumber Int No
chainId String No
contract String No
name String No
parameters EventCreateparametersInput | String No
keys EventCreatekeysInput | String No
timestamp DateTime No
txHash String No
status Int No

EventUncheckedCreateInput

Name Type Nullable
id Int No
eventId String No
blockNumber Int No
transactionNumber Int No
chainId String No
contract String No
name String No
parameters EventCreateparametersInput | String No
keys EventCreatekeysInput | String No
timestamp DateTime No
txHash String No
status Int No

EventUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
blockNumber Int | IntFieldUpdateOperationsInput No
transactionNumber Int | IntFieldUpdateOperationsInput No
chainId String | StringFieldUpdateOperationsInput No
contract String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
parameters EventUpdateparametersInput | String No
keys EventUpdatekeysInput | String No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
txHash String | StringFieldUpdateOperationsInput No
status Int | IntFieldUpdateOperationsInput No

EventUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
blockNumber Int | IntFieldUpdateOperationsInput No
transactionNumber Int | IntFieldUpdateOperationsInput No
chainId String | StringFieldUpdateOperationsInput No
contract String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
parameters EventUpdateparametersInput | String No
keys EventUpdatekeysInput | String No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
txHash String | StringFieldUpdateOperationsInput No
status Int | IntFieldUpdateOperationsInput No

EventCreateManyInput

Name Type Nullable
id Int No
eventId String No
blockNumber Int No
transactionNumber Int No
chainId String No
contract String No
name String No
parameters EventCreateparametersInput | String No
keys EventCreatekeysInput | String No
timestamp DateTime No
txHash String No
status Int No

EventUpdateManyMutationInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
blockNumber Int | IntFieldUpdateOperationsInput No
transactionNumber Int | IntFieldUpdateOperationsInput No
chainId String | StringFieldUpdateOperationsInput No
contract String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
parameters EventUpdateparametersInput | String No
keys EventUpdatekeysInput | String No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
txHash String | StringFieldUpdateOperationsInput No
status Int | IntFieldUpdateOperationsInput No

EventUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
blockNumber Int | IntFieldUpdateOperationsInput No
transactionNumber Int | IntFieldUpdateOperationsInput No
chainId String | StringFieldUpdateOperationsInput No
contract String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
parameters EventUpdateparametersInput | String No
keys EventUpdatekeysInput | String No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
txHash String | StringFieldUpdateOperationsInput No
status Int | IntFieldUpdateOperationsInput No

LastIndexedEventCreateInput

Name Type Nullable
moduleName String No
eventId String No

LastIndexedEventUncheckedCreateInput

Name Type Nullable
moduleName String No
eventId String No

LastIndexedEventUpdateInput

Name Type Nullable
moduleName String | StringFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No

LastIndexedEventUncheckedUpdateInput

Name Type Nullable
moduleName String | StringFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No

LastIndexedEventCreateManyInput

Name Type Nullable
moduleName String No
eventId String No

LastIndexedEventUpdateManyMutationInput

Name Type Nullable
moduleName String | StringFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No

LastIndexedEventUncheckedUpdateManyInput

Name Type Nullable
moduleName String | StringFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No

LoreEntityCreateInput

Name Type Nullable
id Int No
owner String | Null Yes
ownerDisplayName String | Null Yes
kind Int No
eventIndexed String | Null Yes
revisions LoreEntityRevisionCreateNestedManyWithoutEntityInput No

LoreEntityUncheckedCreateInput

Name Type Nullable
id Int No
owner String | Null Yes
ownerDisplayName String | Null Yes
kind Int No
eventIndexed String | Null Yes
revisions LoreEntityRevisionUncheckedCreateNestedManyWithoutEntityInput No

LoreEntityUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerDisplayName String | NullableStringFieldUpdateOperationsInput | Null Yes
kind Int | IntFieldUpdateOperationsInput No
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes
revisions LoreEntityRevisionUpdateManyWithoutEntityNestedInput No

LoreEntityUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerDisplayName String | NullableStringFieldUpdateOperationsInput | Null Yes
kind Int | IntFieldUpdateOperationsInput No
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes
revisions LoreEntityRevisionUncheckedUpdateManyWithoutEntityNestedInput No

LoreEntityCreateManyInput

Name Type Nullable
id Int No
owner String | Null Yes
ownerDisplayName String | Null Yes
kind Int No
eventIndexed String | Null Yes

LoreEntityUpdateManyMutationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerDisplayName String | NullableStringFieldUpdateOperationsInput | Null Yes
kind Int | IntFieldUpdateOperationsInput No
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes

LoreEntityUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerDisplayName String | NullableStringFieldUpdateOperationsInput | Null Yes
kind Int | IntFieldUpdateOperationsInput No
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes

LoreEntityRevisionCreateInput

Name Type Nullable
revisionNumber Int No
arweaveId String No
title String | Null Yes
markdown String | Null Yes
excerpt String | Null Yes
media_url String | Null Yes
createdAt DateTime | Null Yes
entity LoreEntityCreateNestedOneWithoutRevisionsInput No
eventIndexed String | Null Yes
pois LorePoisOnEntityRevisionsCreateNestedManyWithoutEntityRevisionInput No
props LorePropsOnEntityRevisionsCreateNestedManyWithoutEntityRevisionInput No

LoreEntityRevisionUncheckedCreateInput

Name Type Nullable
id Int No
revisionNumber Int No
arweaveId String No
title String | Null Yes
markdown String | Null Yes
excerpt String | Null Yes
media_url String | Null Yes
createdAt DateTime | Null Yes
entityId Int No
eventIndexed String | Null Yes
pois LorePoisOnEntityRevisionsUncheckedCreateNestedManyWithoutEntityRevisionInput No
props LorePropsOnEntityRevisionsUncheckedCreateNestedManyWithoutEntityRevisionInput No

LoreEntityRevisionUpdateInput

Name Type Nullable
revisionNumber Int | IntFieldUpdateOperationsInput No
arweaveId String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
markdown String | NullableStringFieldUpdateOperationsInput | Null Yes
excerpt String | NullableStringFieldUpdateOperationsInput | Null Yes
media_url String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
entity LoreEntityUpdateOneRequiredWithoutRevisionsNestedInput No
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes
pois LorePoisOnEntityRevisionsUpdateManyWithoutEntityRevisionNestedInput No
props LorePropsOnEntityRevisionsUpdateManyWithoutEntityRevisionNestedInput No

LoreEntityRevisionUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
revisionNumber Int | IntFieldUpdateOperationsInput No
arweaveId String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
markdown String | NullableStringFieldUpdateOperationsInput | Null Yes
excerpt String | NullableStringFieldUpdateOperationsInput | Null Yes
media_url String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
entityId Int | IntFieldUpdateOperationsInput No
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes
pois LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutEntityRevisionNestedInput No
props LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutEntityRevisionNestedInput No

LoreEntityRevisionCreateManyInput

Name Type Nullable
id Int No
revisionNumber Int No
arweaveId String No
title String | Null Yes
markdown String | Null Yes
excerpt String | Null Yes
media_url String | Null Yes
createdAt DateTime | Null Yes
entityId Int No
eventIndexed String | Null Yes

LoreEntityRevisionUpdateManyMutationInput

Name Type Nullable
revisionNumber Int | IntFieldUpdateOperationsInput No
arweaveId String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
markdown String | NullableStringFieldUpdateOperationsInput | Null Yes
excerpt String | NullableStringFieldUpdateOperationsInput | Null Yes
media_url String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes

LoreEntityRevisionUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
revisionNumber Int | IntFieldUpdateOperationsInput No
arweaveId String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
markdown String | NullableStringFieldUpdateOperationsInput | Null Yes
excerpt String | NullableStringFieldUpdateOperationsInput | Null Yes
media_url String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
entityId Int | IntFieldUpdateOperationsInput No
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePOICreateInput

Name Type Nullable
id Int No
name String No
assetType String | Null Yes
entities LorePoisOnEntityRevisionsCreateNestedManyWithoutPoiInput No

LorePOIUncheckedCreateInput

Name Type Nullable
id Int No
name String No
assetType String | Null Yes
entities LorePoisOnEntityRevisionsUncheckedCreateNestedManyWithoutPoiInput No

LorePOIUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
assetType String | NullableStringFieldUpdateOperationsInput | Null Yes
entities LorePoisOnEntityRevisionsUpdateManyWithoutPoiNestedInput No

LorePOIUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
assetType String | NullableStringFieldUpdateOperationsInput | Null Yes
entities LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutPoiNestedInput No

LorePOICreateManyInput

Name Type Nullable
id Int No
name String No
assetType String | Null Yes

LorePOIUpdateManyMutationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
assetType String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePOIUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
assetType String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePropCreateInput

Name Type Nullable
id Int No
name String No
entities LorePropsOnEntityRevisionsCreateNestedManyWithoutPropInput No

LorePropUncheckedCreateInput

Name Type Nullable
id Int No
name String No
entities LorePropsOnEntityRevisionsUncheckedCreateNestedManyWithoutPropInput No

LorePropUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
entities LorePropsOnEntityRevisionsUpdateManyWithoutPropNestedInput No

LorePropUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
entities LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutPropNestedInput No

LorePropCreateManyInput

Name Type Nullable
id Int No
name String No

LorePropUpdateManyMutationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

LorePropUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

LorePoisOnEntityRevisionsCreateInput

Name Type Nullable
entityRevision LoreEntityRevisionCreateNestedOneWithoutPoisInput No
poi LorePOICreateNestedOneWithoutEntitiesInput No
assetId String | Null Yes

LorePoisOnEntityRevisionsUncheckedCreateInput

Name Type Nullable
id Int No
entityRevisionId Int No
poiId Int No
assetId String | Null Yes

LorePoisOnEntityRevisionsUpdateInput

Name Type Nullable
entityRevision LoreEntityRevisionUpdateOneRequiredWithoutPoisNestedInput No
poi LorePOIUpdateOneRequiredWithoutEntitiesNestedInput No
assetId String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePoisOnEntityRevisionsUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
entityRevisionId Int | IntFieldUpdateOperationsInput No
poiId Int | IntFieldUpdateOperationsInput No
assetId String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePoisOnEntityRevisionsCreateManyInput

Name Type Nullable
id Int No
entityRevisionId Int No
poiId Int No
assetId String | Null Yes

LorePoisOnEntityRevisionsUpdateManyMutationInput

Name Type Nullable
assetId String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePoisOnEntityRevisionsUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
entityRevisionId Int | IntFieldUpdateOperationsInput No
poiId Int | IntFieldUpdateOperationsInput No
assetId String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePropsOnEntityRevisionsCreateInput

Name Type Nullable
entityRevision LoreEntityRevisionCreateNestedOneWithoutPropsInput No
prop LorePropCreateNestedOneWithoutEntitiesInput No
value String | Null Yes

LorePropsOnEntityRevisionsUncheckedCreateInput

Name Type Nullable
id Int No
entityRevisionId Int No
propId Int No
value String | Null Yes

LorePropsOnEntityRevisionsUpdateInput

Name Type Nullable
entityRevision LoreEntityRevisionUpdateOneRequiredWithoutPropsNestedInput No
prop LorePropUpdateOneRequiredWithoutEntitiesNestedInput No
value String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePropsOnEntityRevisionsUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
entityRevisionId Int | IntFieldUpdateOperationsInput No
propId Int | IntFieldUpdateOperationsInput No
value String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePropsOnEntityRevisionsCreateManyInput

Name Type Nullable
id Int No
entityRevisionId Int No
propId Int No
value String | Null Yes

LorePropsOnEntityRevisionsUpdateManyMutationInput

Name Type Nullable
value String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePropsOnEntityRevisionsUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
entityRevisionId Int | IntFieldUpdateOperationsInput No
propId Int | IntFieldUpdateOperationsInput No
value String | NullableStringFieldUpdateOperationsInput | Null Yes

ExchangeRateCreateInput

Name Type Nullable
date String No
hour Int No
tokenId Int No
amount String No
buyAmount String No
sellAmount String No
currencyReserve String No
tokenReserve String No
lpAmount String No

ExchangeRateUncheckedCreateInput

Name Type Nullable
date String No
hour Int No
tokenId Int No
amount String No
buyAmount String No
sellAmount String No
currencyReserve String No
tokenReserve String No
lpAmount String No

ExchangeRateUpdateInput

Name Type Nullable
date String | StringFieldUpdateOperationsInput No
hour Int | IntFieldUpdateOperationsInput No
tokenId Int | IntFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
buyAmount String | StringFieldUpdateOperationsInput No
sellAmount String | StringFieldUpdateOperationsInput No
currencyReserve String | StringFieldUpdateOperationsInput No
tokenReserve String | StringFieldUpdateOperationsInput No
lpAmount String | StringFieldUpdateOperationsInput No

ExchangeRateUncheckedUpdateInput

Name Type Nullable
date String | StringFieldUpdateOperationsInput No
hour Int | IntFieldUpdateOperationsInput No
tokenId Int | IntFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
buyAmount String | StringFieldUpdateOperationsInput No
sellAmount String | StringFieldUpdateOperationsInput No
currencyReserve String | StringFieldUpdateOperationsInput No
tokenReserve String | StringFieldUpdateOperationsInput No
lpAmount String | StringFieldUpdateOperationsInput No

ExchangeRateCreateManyInput

Name Type Nullable
date String No
hour Int No
tokenId Int No
amount String No
buyAmount String No
sellAmount String No
currencyReserve String No
tokenReserve String No
lpAmount String No

ExchangeRateUpdateManyMutationInput

Name Type Nullable
date String | StringFieldUpdateOperationsInput No
hour Int | IntFieldUpdateOperationsInput No
tokenId Int | IntFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
buyAmount String | StringFieldUpdateOperationsInput No
sellAmount String | StringFieldUpdateOperationsInput No
currencyReserve String | StringFieldUpdateOperationsInput No
tokenReserve String | StringFieldUpdateOperationsInput No
lpAmount String | StringFieldUpdateOperationsInput No

ExchangeRateUncheckedUpdateManyInput

Name Type Nullable
date String | StringFieldUpdateOperationsInput No
hour Int | IntFieldUpdateOperationsInput No
tokenId Int | IntFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
buyAmount String | StringFieldUpdateOperationsInput No
sellAmount String | StringFieldUpdateOperationsInput No
currencyReserve String | StringFieldUpdateOperationsInput No
tokenReserve String | StringFieldUpdateOperationsInput No
lpAmount String | StringFieldUpdateOperationsInput No

RealmHistoryCreateInput

Name Type Nullable
eventId String No
eventType String No
realmId Int No
bastionId Int No
realmOwner String No
realmName String No
realmOrder OrderType | Null Yes
data JsonNullValueInput | Json No
timestamp DateTime No
transactionHash String No

RealmHistoryUncheckedCreateInput

Name Type Nullable
id Int No
eventId String No
eventType String No
realmId Int No
bastionId Int No
realmOwner String No
realmName String No
realmOrder OrderType | Null Yes
data JsonNullValueInput | Json No
timestamp DateTime No
transactionHash String No

RealmHistoryUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
eventType String | StringFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
bastionId Int | IntFieldUpdateOperationsInput No
realmOwner String | StringFieldUpdateOperationsInput No
realmName String | StringFieldUpdateOperationsInput No
realmOrder OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
data JsonNullValueInput | Json No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No

RealmHistoryUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
eventType String | StringFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
bastionId Int | IntFieldUpdateOperationsInput No
realmOwner String | StringFieldUpdateOperationsInput No
realmName String | StringFieldUpdateOperationsInput No
realmOrder OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
data JsonNullValueInput | Json No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No

RealmHistoryCreateManyInput

Name Type Nullable
id Int No
eventId String No
eventType String No
realmId Int No
bastionId Int No
realmOwner String No
realmName String No
realmOrder OrderType | Null Yes
data JsonNullValueInput | Json No
timestamp DateTime No
transactionHash String No

RealmHistoryUpdateManyMutationInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
eventType String | StringFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
bastionId Int | IntFieldUpdateOperationsInput No
realmOwner String | StringFieldUpdateOperationsInput No
realmName String | StringFieldUpdateOperationsInput No
realmOrder OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
data JsonNullValueInput | Json No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No

RealmHistoryUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
eventType String | StringFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
bastionId Int | IntFieldUpdateOperationsInput No
realmOwner String | StringFieldUpdateOperationsInput No
realmName String | StringFieldUpdateOperationsInput No
realmOrder OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
data JsonNullValueInput | Json No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No

CombatHistoryCreateInput

Name Type Nullable
eventId String No
eventType String No
attackRealmId Int No
attackRealmOwner String No
attackSquad JsonNullValueInput | Json No
defendRealmId Int No
defendRealmOwner String No
defendSquad JsonNullValueInput | Json No
timestamp DateTime No
transactionHash String No
outcome Int No
attackType Int No
hitPoints Int No

CombatHistoryUncheckedCreateInput

Name Type Nullable
id Int No
eventId String No
eventType String No
attackRealmId Int No
attackRealmOwner String No
attackSquad JsonNullValueInput | Json No
defendRealmId Int No
defendRealmOwner String No
defendSquad JsonNullValueInput | Json No
timestamp DateTime No
transactionHash String No
outcome Int No
attackType Int No
hitPoints Int No

CombatHistoryUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
eventType String | StringFieldUpdateOperationsInput No
attackRealmId Int | IntFieldUpdateOperationsInput No
attackRealmOwner String | StringFieldUpdateOperationsInput No
attackSquad JsonNullValueInput | Json No
defendRealmId Int | IntFieldUpdateOperationsInput No
defendRealmOwner String | StringFieldUpdateOperationsInput No
defendSquad JsonNullValueInput | Json No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No
outcome Int | IntFieldUpdateOperationsInput No
attackType Int | IntFieldUpdateOperationsInput No
hitPoints Int | IntFieldUpdateOperationsInput No

CombatHistoryUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
eventType String | StringFieldUpdateOperationsInput No
attackRealmId Int | IntFieldUpdateOperationsInput No
attackRealmOwner String | StringFieldUpdateOperationsInput No
attackSquad JsonNullValueInput | Json No
defendRealmId Int | IntFieldUpdateOperationsInput No
defendRealmOwner String | StringFieldUpdateOperationsInput No
defendSquad JsonNullValueInput | Json No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No
outcome Int | IntFieldUpdateOperationsInput No
attackType Int | IntFieldUpdateOperationsInput No
hitPoints Int | IntFieldUpdateOperationsInput No

CombatHistoryCreateManyInput

Name Type Nullable
id Int No
eventId String No
eventType String No
attackRealmId Int No
attackRealmOwner String No
attackSquad JsonNullValueInput | Json No
defendRealmId Int No
defendRealmOwner String No
defendSquad JsonNullValueInput | Json No
timestamp DateTime No
transactionHash String No
outcome Int No
attackType Int No
hitPoints Int No

CombatHistoryUpdateManyMutationInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
eventType String | StringFieldUpdateOperationsInput No
attackRealmId Int | IntFieldUpdateOperationsInput No
attackRealmOwner String | StringFieldUpdateOperationsInput No
attackSquad JsonNullValueInput | Json No
defendRealmId Int | IntFieldUpdateOperationsInput No
defendRealmOwner String | StringFieldUpdateOperationsInput No
defendSquad JsonNullValueInput | Json No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No
outcome Int | IntFieldUpdateOperationsInput No
attackType Int | IntFieldUpdateOperationsInput No
hitPoints Int | IntFieldUpdateOperationsInput No

CombatHistoryUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
eventType String | StringFieldUpdateOperationsInput No
attackRealmId Int | IntFieldUpdateOperationsInput No
attackRealmOwner String | StringFieldUpdateOperationsInput No
attackSquad JsonNullValueInput | Json No
defendRealmId Int | IntFieldUpdateOperationsInput No
defendRealmOwner String | StringFieldUpdateOperationsInput No
defendSquad JsonNullValueInput | Json No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No
outcome Int | IntFieldUpdateOperationsInput No
attackType Int | IntFieldUpdateOperationsInput No
hitPoints Int | IntFieldUpdateOperationsInput No

ResourceTransferCreateInput

Name Type Nullable
resourceId Int No
eventId String No
blockNumber Int No
transactionNumber Int No
operatorAddress String No
fromAddress String No
toAddress String No
amount String No
amountValue Decimal No
transactionHash String No
timestamp DateTime No

ResourceTransferUncheckedCreateInput

Name Type Nullable
resourceId Int No
eventId String No
blockNumber Int No
transactionNumber Int No
operatorAddress String No
fromAddress String No
toAddress String No
amount String No
amountValue Decimal No
transactionHash String No
timestamp DateTime No

ResourceTransferUpdateInput

Name Type Nullable
resourceId Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
blockNumber Int | IntFieldUpdateOperationsInput No
transactionNumber Int | IntFieldUpdateOperationsInput No
operatorAddress String | StringFieldUpdateOperationsInput No
fromAddress String | StringFieldUpdateOperationsInput No
toAddress String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
amountValue Decimal | DecimalFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

ResourceTransferUncheckedUpdateInput

Name Type Nullable
resourceId Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
blockNumber Int | IntFieldUpdateOperationsInput No
transactionNumber Int | IntFieldUpdateOperationsInput No
operatorAddress String | StringFieldUpdateOperationsInput No
fromAddress String | StringFieldUpdateOperationsInput No
toAddress String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
amountValue Decimal | DecimalFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

ResourceTransferCreateManyInput

Name Type Nullable
resourceId Int No
eventId String No
blockNumber Int No
transactionNumber Int No
operatorAddress String No
fromAddress String No
toAddress String No
amount String No
amountValue Decimal No
transactionHash String No
timestamp DateTime No

ResourceTransferUpdateManyMutationInput

Name Type Nullable
resourceId Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
blockNumber Int | IntFieldUpdateOperationsInput No
transactionNumber Int | IntFieldUpdateOperationsInput No
operatorAddress String | StringFieldUpdateOperationsInput No
fromAddress String | StringFieldUpdateOperationsInput No
toAddress String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
amountValue Decimal | DecimalFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

ResourceTransferUncheckedUpdateManyInput

Name Type Nullable
resourceId Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
blockNumber Int | IntFieldUpdateOperationsInput No
transactionNumber Int | IntFieldUpdateOperationsInput No
operatorAddress String | StringFieldUpdateOperationsInput No
fromAddress String | StringFieldUpdateOperationsInput No
toAddress String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
amountValue Decimal | DecimalFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

LordTransferCreateInput

Name Type Nullable
eventId String No
blockNumber Int No
transactionNumber Int No
fromAddress String No
toAddress String No
amount String No
amountValue Decimal No
transactionHash String No
timestamp DateTime No

LordTransferUncheckedCreateInput

Name Type Nullable
eventId String No
blockNumber Int No
transactionNumber Int No
fromAddress String No
toAddress String No
amount String No
amountValue Decimal No
transactionHash String No
timestamp DateTime No

LordTransferUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
blockNumber Int | IntFieldUpdateOperationsInput No
transactionNumber Int | IntFieldUpdateOperationsInput No
fromAddress String | StringFieldUpdateOperationsInput No
toAddress String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
amountValue Decimal | DecimalFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

LordTransferUncheckedUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
blockNumber Int | IntFieldUpdateOperationsInput No
transactionNumber Int | IntFieldUpdateOperationsInput No
fromAddress String | StringFieldUpdateOperationsInput No
toAddress String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
amountValue Decimal | DecimalFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

LordTransferCreateManyInput

Name Type Nullable
eventId String No
blockNumber Int No
transactionNumber Int No
fromAddress String No
toAddress String No
amount String No
amountValue Decimal No
transactionHash String No
timestamp DateTime No

LordTransferUpdateManyMutationInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
blockNumber Int | IntFieldUpdateOperationsInput No
transactionNumber Int | IntFieldUpdateOperationsInput No
fromAddress String | StringFieldUpdateOperationsInput No
toAddress String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
amountValue Decimal | DecimalFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

LordTransferUncheckedUpdateManyInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
blockNumber Int | IntFieldUpdateOperationsInput No
transactionNumber Int | IntFieldUpdateOperationsInput No
fromAddress String | StringFieldUpdateOperationsInput No
toAddress String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
amountValue Decimal | DecimalFieldUpdateOperationsInput No
transactionHash String | StringFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

ArmyCreateInput

Name Type Nullable
armyId Int No
orderId Int No
destinationRealmId Int No
destinationArrivalTime DateTime | Null Yes
armyPacked Int No
lastAttacked DateTime | Null Yes
xp Int No
level Int No
callSign Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No
bastionId Int No
bastionPastLocation Int No
bastionCurrentLocation Int No
bastionArrivalBlock Int No
ownRealm RealmCreateNestedOneWithoutOwnArmiesInput No

ArmyUncheckedCreateInput

Name Type Nullable
realmId Int No
armyId Int No
orderId Int No
destinationRealmId Int No
destinationArrivalTime DateTime | Null Yes
armyPacked Int No
lastAttacked DateTime | Null Yes
xp Int No
level Int No
callSign Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No
bastionId Int No
bastionPastLocation Int No
bastionCurrentLocation Int No
bastionArrivalBlock Int No

ArmyUpdateInput

Name Type Nullable
armyId Int | IntFieldUpdateOperationsInput No
orderId Int | IntFieldUpdateOperationsInput No
destinationRealmId Int | IntFieldUpdateOperationsInput No
destinationArrivalTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
armyPacked Int | IntFieldUpdateOperationsInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
xp Int | IntFieldUpdateOperationsInput No
level Int | IntFieldUpdateOperationsInput No
callSign Int | IntFieldUpdateOperationsInput No
lightCavalryQty Int | IntFieldUpdateOperationsInput No
lightCavalryHealth Int | IntFieldUpdateOperationsInput No
heavyCavalryQty Int | IntFieldUpdateOperationsInput No
heavyCavalryHealth Int | IntFieldUpdateOperationsInput No
archerQty Int | IntFieldUpdateOperationsInput No
archerHealth Int | IntFieldUpdateOperationsInput No
longbowQty Int | IntFieldUpdateOperationsInput No
longbowHealth Int | IntFieldUpdateOperationsInput No
mageQty Int | IntFieldUpdateOperationsInput No
mageHealth Int | IntFieldUpdateOperationsInput No
arcanistQty Int | IntFieldUpdateOperationsInput No
arcanistHealth Int | IntFieldUpdateOperationsInput No
lightInfantryQty Int | IntFieldUpdateOperationsInput No
lightInfantryHealth Int | IntFieldUpdateOperationsInput No
heavyInfantryQty Int | IntFieldUpdateOperationsInput No
heavyInfantryHealth Int | IntFieldUpdateOperationsInput No
bastionId Int | IntFieldUpdateOperationsInput No
bastionPastLocation Int | IntFieldUpdateOperationsInput No
bastionCurrentLocation Int | IntFieldUpdateOperationsInput No
bastionArrivalBlock Int | IntFieldUpdateOperationsInput No
ownRealm RealmUpdateOneRequiredWithoutOwnArmiesNestedInput No

ArmyUncheckedUpdateInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
armyId Int | IntFieldUpdateOperationsInput No
orderId Int | IntFieldUpdateOperationsInput No
destinationRealmId Int | IntFieldUpdateOperationsInput No
destinationArrivalTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
armyPacked Int | IntFieldUpdateOperationsInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
xp Int | IntFieldUpdateOperationsInput No
level Int | IntFieldUpdateOperationsInput No
callSign Int | IntFieldUpdateOperationsInput No
lightCavalryQty Int | IntFieldUpdateOperationsInput No
lightCavalryHealth Int | IntFieldUpdateOperationsInput No
heavyCavalryQty Int | IntFieldUpdateOperationsInput No
heavyCavalryHealth Int | IntFieldUpdateOperationsInput No
archerQty Int | IntFieldUpdateOperationsInput No
archerHealth Int | IntFieldUpdateOperationsInput No
longbowQty Int | IntFieldUpdateOperationsInput No
longbowHealth Int | IntFieldUpdateOperationsInput No
mageQty Int | IntFieldUpdateOperationsInput No
mageHealth Int | IntFieldUpdateOperationsInput No
arcanistQty Int | IntFieldUpdateOperationsInput No
arcanistHealth Int | IntFieldUpdateOperationsInput No
lightInfantryQty Int | IntFieldUpdateOperationsInput No
lightInfantryHealth Int | IntFieldUpdateOperationsInput No
heavyInfantryQty Int | IntFieldUpdateOperationsInput No
heavyInfantryHealth Int | IntFieldUpdateOperationsInput No
bastionId Int | IntFieldUpdateOperationsInput No
bastionPastLocation Int | IntFieldUpdateOperationsInput No
bastionCurrentLocation Int | IntFieldUpdateOperationsInput No
bastionArrivalBlock Int | IntFieldUpdateOperationsInput No

ArmyCreateManyInput

Name Type Nullable
realmId Int No
armyId Int No
orderId Int No
destinationRealmId Int No
destinationArrivalTime DateTime | Null Yes
armyPacked Int No
lastAttacked DateTime | Null Yes
xp Int No
level Int No
callSign Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No
bastionId Int No
bastionPastLocation Int No
bastionCurrentLocation Int No
bastionArrivalBlock Int No

ArmyUpdateManyMutationInput

Name Type Nullable
armyId Int | IntFieldUpdateOperationsInput No
orderId Int | IntFieldUpdateOperationsInput No
destinationRealmId Int | IntFieldUpdateOperationsInput No
destinationArrivalTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
armyPacked Int | IntFieldUpdateOperationsInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
xp Int | IntFieldUpdateOperationsInput No
level Int | IntFieldUpdateOperationsInput No
callSign Int | IntFieldUpdateOperationsInput No
lightCavalryQty Int | IntFieldUpdateOperationsInput No
lightCavalryHealth Int | IntFieldUpdateOperationsInput No
heavyCavalryQty Int | IntFieldUpdateOperationsInput No
heavyCavalryHealth Int | IntFieldUpdateOperationsInput No
archerQty Int | IntFieldUpdateOperationsInput No
archerHealth Int | IntFieldUpdateOperationsInput No
longbowQty Int | IntFieldUpdateOperationsInput No
longbowHealth Int | IntFieldUpdateOperationsInput No
mageQty Int | IntFieldUpdateOperationsInput No
mageHealth Int | IntFieldUpdateOperationsInput No
arcanistQty Int | IntFieldUpdateOperationsInput No
arcanistHealth Int | IntFieldUpdateOperationsInput No
lightInfantryQty Int | IntFieldUpdateOperationsInput No
lightInfantryHealth Int | IntFieldUpdateOperationsInput No
heavyInfantryQty Int | IntFieldUpdateOperationsInput No
heavyInfantryHealth Int | IntFieldUpdateOperationsInput No
bastionId Int | IntFieldUpdateOperationsInput No
bastionPastLocation Int | IntFieldUpdateOperationsInput No
bastionCurrentLocation Int | IntFieldUpdateOperationsInput No
bastionArrivalBlock Int | IntFieldUpdateOperationsInput No

ArmyUncheckedUpdateManyInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
armyId Int | IntFieldUpdateOperationsInput No
orderId Int | IntFieldUpdateOperationsInput No
destinationRealmId Int | IntFieldUpdateOperationsInput No
destinationArrivalTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
armyPacked Int | IntFieldUpdateOperationsInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
xp Int | IntFieldUpdateOperationsInput No
level Int | IntFieldUpdateOperationsInput No
callSign Int | IntFieldUpdateOperationsInput No
lightCavalryQty Int | IntFieldUpdateOperationsInput No
lightCavalryHealth Int | IntFieldUpdateOperationsInput No
heavyCavalryQty Int | IntFieldUpdateOperationsInput No
heavyCavalryHealth Int | IntFieldUpdateOperationsInput No
archerQty Int | IntFieldUpdateOperationsInput No
archerHealth Int | IntFieldUpdateOperationsInput No
longbowQty Int | IntFieldUpdateOperationsInput No
longbowHealth Int | IntFieldUpdateOperationsInput No
mageQty Int | IntFieldUpdateOperationsInput No
mageHealth Int | IntFieldUpdateOperationsInput No
arcanistQty Int | IntFieldUpdateOperationsInput No
arcanistHealth Int | IntFieldUpdateOperationsInput No
lightInfantryQty Int | IntFieldUpdateOperationsInput No
lightInfantryHealth Int | IntFieldUpdateOperationsInput No
heavyInfantryQty Int | IntFieldUpdateOperationsInput No
heavyInfantryHealth Int | IntFieldUpdateOperationsInput No
bastionId Int | IntFieldUpdateOperationsInput No
bastionPastLocation Int | IntFieldUpdateOperationsInput No
bastionCurrentLocation Int | IntFieldUpdateOperationsInput No
bastionArrivalBlock Int | IntFieldUpdateOperationsInput No

BastionCreateInput

Name Type Nullable
bastionId Int No
longitude Float No
latitude Float No

BastionUncheckedCreateInput

Name Type Nullable
bastionId Int No
longitude Float No
latitude Float No

BastionUpdateInput

Name Type Nullable
bastionId Int | IntFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No

BastionUncheckedUpdateInput

Name Type Nullable
bastionId Int | IntFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No

BastionCreateManyInput

Name Type Nullable
bastionId Int No
longitude Float No
latitude Float No

BastionUpdateManyMutationInput

Name Type Nullable
bastionId Int | IntFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No

BastionUncheckedUpdateManyInput

Name Type Nullable
bastionId Int | IntFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No

BastionLocationCreateInput

Name Type Nullable
bastionId Int No
locationId Int No
defendingOrderId Int No
takenBlock Int No

BastionLocationUncheckedCreateInput

Name Type Nullable
bastionId Int No
locationId Int No
defendingOrderId Int No
takenBlock Int No

BastionLocationUpdateInput

Name Type Nullable
bastionId Int | IntFieldUpdateOperationsInput No
locationId Int | IntFieldUpdateOperationsInput No
defendingOrderId Int | IntFieldUpdateOperationsInput No
takenBlock Int | IntFieldUpdateOperationsInput No

BastionLocationUncheckedUpdateInput

Name Type Nullable
bastionId Int | IntFieldUpdateOperationsInput No
locationId Int | IntFieldUpdateOperationsInput No
defendingOrderId Int | IntFieldUpdateOperationsInput No
takenBlock Int | IntFieldUpdateOperationsInput No

BastionLocationCreateManyInput

Name Type Nullable
bastionId Int No
locationId Int No
defendingOrderId Int No
takenBlock Int No

BastionLocationUpdateManyMutationInput

Name Type Nullable
bastionId Int | IntFieldUpdateOperationsInput No
locationId Int | IntFieldUpdateOperationsInput No
defendingOrderId Int | IntFieldUpdateOperationsInput No
takenBlock Int | IntFieldUpdateOperationsInput No

BastionLocationUncheckedUpdateManyInput

Name Type Nullable
bastionId Int | IntFieldUpdateOperationsInput No
locationId Int | IntFieldUpdateOperationsInput No
defendingOrderId Int | IntFieldUpdateOperationsInput No
takenBlock Int | IntFieldUpdateOperationsInput No

TravelCreateInput

Name Type Nullable
eventId String No
contractId Int No
tokenId Int No
nestedId Int No
locationContractId Int No
locationTokenId Int No
locationNestedId Int No
destinationContractId Int No
destinationTokenId Int No
destinationNestedId Int No
destinationArrivalTime DateTime No
timestamp DateTime No

TravelUncheckedCreateInput

Name Type Nullable
eventId String No
contractId Int No
tokenId Int No
nestedId Int No
locationContractId Int No
locationTokenId Int No
locationNestedId Int No
destinationContractId Int No
destinationTokenId Int No
destinationNestedId Int No
destinationArrivalTime DateTime No
timestamp DateTime No

TravelUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
contractId Int | IntFieldUpdateOperationsInput No
tokenId Int | IntFieldUpdateOperationsInput No
nestedId Int | IntFieldUpdateOperationsInput No
locationContractId Int | IntFieldUpdateOperationsInput No
locationTokenId Int | IntFieldUpdateOperationsInput No
locationNestedId Int | IntFieldUpdateOperationsInput No
destinationContractId Int | IntFieldUpdateOperationsInput No
destinationTokenId Int | IntFieldUpdateOperationsInput No
destinationNestedId Int | IntFieldUpdateOperationsInput No
destinationArrivalTime DateTime | DateTimeFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

TravelUncheckedUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
contractId Int | IntFieldUpdateOperationsInput No
tokenId Int | IntFieldUpdateOperationsInput No
nestedId Int | IntFieldUpdateOperationsInput No
locationContractId Int | IntFieldUpdateOperationsInput No
locationTokenId Int | IntFieldUpdateOperationsInput No
locationNestedId Int | IntFieldUpdateOperationsInput No
destinationContractId Int | IntFieldUpdateOperationsInput No
destinationTokenId Int | IntFieldUpdateOperationsInput No
destinationNestedId Int | IntFieldUpdateOperationsInput No
destinationArrivalTime DateTime | DateTimeFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

TravelCreateManyInput

Name Type Nullable
eventId String No
contractId Int No
tokenId Int No
nestedId Int No
locationContractId Int No
locationTokenId Int No
locationNestedId Int No
destinationContractId Int No
destinationTokenId Int No
destinationNestedId Int No
destinationArrivalTime DateTime No
timestamp DateTime No

TravelUpdateManyMutationInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
contractId Int | IntFieldUpdateOperationsInput No
tokenId Int | IntFieldUpdateOperationsInput No
nestedId Int | IntFieldUpdateOperationsInput No
locationContractId Int | IntFieldUpdateOperationsInput No
locationTokenId Int | IntFieldUpdateOperationsInput No
locationNestedId Int | IntFieldUpdateOperationsInput No
destinationContractId Int | IntFieldUpdateOperationsInput No
destinationTokenId Int | IntFieldUpdateOperationsInput No
destinationNestedId Int | IntFieldUpdateOperationsInput No
destinationArrivalTime DateTime | DateTimeFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

TravelUncheckedUpdateManyInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
contractId Int | IntFieldUpdateOperationsInput No
tokenId Int | IntFieldUpdateOperationsInput No
nestedId Int | IntFieldUpdateOperationsInput No
locationContractId Int | IntFieldUpdateOperationsInput No
locationTokenId Int | IntFieldUpdateOperationsInput No
locationNestedId Int | IntFieldUpdateOperationsInput No
destinationContractId Int | IntFieldUpdateOperationsInput No
destinationTokenId Int | IntFieldUpdateOperationsInput No
destinationNestedId Int | IntFieldUpdateOperationsInput No
destinationArrivalTime DateTime | DateTimeFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

ExchangeEventCreateInput

Name Type Nullable
eventId String No
type ExchangeEventType No
resourceId Int No
address String No
currencyAmount String No
currencyAmountValue Decimal No
resourceAmount String No
resourceAmountValue Decimal No
timestamp DateTime No

ExchangeEventUncheckedCreateInput

Name Type Nullable
eventId String No
type ExchangeEventType No
resourceId Int No
address String No
currencyAmount String No
currencyAmountValue Decimal No
resourceAmount String No
resourceAmountValue Decimal No
timestamp DateTime No

ExchangeEventUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
type ExchangeEventType | EnumExchangeEventTypeFieldUpdateOperationsInput No
resourceId Int | IntFieldUpdateOperationsInput No
address String | StringFieldUpdateOperationsInput No
currencyAmount String | StringFieldUpdateOperationsInput No
currencyAmountValue Decimal | DecimalFieldUpdateOperationsInput No
resourceAmount String | StringFieldUpdateOperationsInput No
resourceAmountValue Decimal | DecimalFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

ExchangeEventUncheckedUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
type ExchangeEventType | EnumExchangeEventTypeFieldUpdateOperationsInput No
resourceId Int | IntFieldUpdateOperationsInput No
address String | StringFieldUpdateOperationsInput No
currencyAmount String | StringFieldUpdateOperationsInput No
currencyAmountValue Decimal | DecimalFieldUpdateOperationsInput No
resourceAmount String | StringFieldUpdateOperationsInput No
resourceAmountValue Decimal | DecimalFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

ExchangeEventCreateManyInput

Name Type Nullable
eventId String No
type ExchangeEventType No
resourceId Int No
address String No
currencyAmount String No
currencyAmountValue Decimal No
resourceAmount String No
resourceAmountValue Decimal No
timestamp DateTime No

ExchangeEventUpdateManyMutationInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
type ExchangeEventType | EnumExchangeEventTypeFieldUpdateOperationsInput No
resourceId Int | IntFieldUpdateOperationsInput No
address String | StringFieldUpdateOperationsInput No
currencyAmount String | StringFieldUpdateOperationsInput No
currencyAmountValue Decimal | DecimalFieldUpdateOperationsInput No
resourceAmount String | StringFieldUpdateOperationsInput No
resourceAmountValue Decimal | DecimalFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

ExchangeEventUncheckedUpdateManyInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
type ExchangeEventType | EnumExchangeEventTypeFieldUpdateOperationsInput No
resourceId Int | IntFieldUpdateOperationsInput No
address String | StringFieldUpdateOperationsInput No
currencyAmount String | StringFieldUpdateOperationsInput No
currencyAmountValue Decimal | DecimalFieldUpdateOperationsInput No
resourceAmount String | StringFieldUpdateOperationsInput No
resourceAmountValue Decimal | DecimalFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

BuildArmyEventCreateInput

Name Type Nullable
eventId String No
realmId Int No
armyId Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No
timestamp DateTime No

BuildArmyEventUncheckedCreateInput

Name Type Nullable
eventId String No
realmId Int No
armyId Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No
timestamp DateTime No

BuildArmyEventUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
armyId Int | IntFieldUpdateOperationsInput No
lightCavalryQty Int | IntFieldUpdateOperationsInput No
lightCavalryHealth Int | IntFieldUpdateOperationsInput No
heavyCavalryQty Int | IntFieldUpdateOperationsInput No
heavyCavalryHealth Int | IntFieldUpdateOperationsInput No
archerQty Int | IntFieldUpdateOperationsInput No
archerHealth Int | IntFieldUpdateOperationsInput No
longbowQty Int | IntFieldUpdateOperationsInput No
longbowHealth Int | IntFieldUpdateOperationsInput No
mageQty Int | IntFieldUpdateOperationsInput No
mageHealth Int | IntFieldUpdateOperationsInput No
arcanistQty Int | IntFieldUpdateOperationsInput No
arcanistHealth Int | IntFieldUpdateOperationsInput No
lightInfantryQty Int | IntFieldUpdateOperationsInput No
lightInfantryHealth Int | IntFieldUpdateOperationsInput No
heavyInfantryQty Int | IntFieldUpdateOperationsInput No
heavyInfantryHealth Int | IntFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

BuildArmyEventUncheckedUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
armyId Int | IntFieldUpdateOperationsInput No
lightCavalryQty Int | IntFieldUpdateOperationsInput No
lightCavalryHealth Int | IntFieldUpdateOperationsInput No
heavyCavalryQty Int | IntFieldUpdateOperationsInput No
heavyCavalryHealth Int | IntFieldUpdateOperationsInput No
archerQty Int | IntFieldUpdateOperationsInput No
archerHealth Int | IntFieldUpdateOperationsInput No
longbowQty Int | IntFieldUpdateOperationsInput No
longbowHealth Int | IntFieldUpdateOperationsInput No
mageQty Int | IntFieldUpdateOperationsInput No
mageHealth Int | IntFieldUpdateOperationsInput No
arcanistQty Int | IntFieldUpdateOperationsInput No
arcanistHealth Int | IntFieldUpdateOperationsInput No
lightInfantryQty Int | IntFieldUpdateOperationsInput No
lightInfantryHealth Int | IntFieldUpdateOperationsInput No
heavyInfantryQty Int | IntFieldUpdateOperationsInput No
heavyInfantryHealth Int | IntFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

BuildArmyEventCreateManyInput

Name Type Nullable
eventId String No
realmId Int No
armyId Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No
timestamp DateTime No

BuildArmyEventUpdateManyMutationInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
armyId Int | IntFieldUpdateOperationsInput No
lightCavalryQty Int | IntFieldUpdateOperationsInput No
lightCavalryHealth Int | IntFieldUpdateOperationsInput No
heavyCavalryQty Int | IntFieldUpdateOperationsInput No
heavyCavalryHealth Int | IntFieldUpdateOperationsInput No
archerQty Int | IntFieldUpdateOperationsInput No
archerHealth Int | IntFieldUpdateOperationsInput No
longbowQty Int | IntFieldUpdateOperationsInput No
longbowHealth Int | IntFieldUpdateOperationsInput No
mageQty Int | IntFieldUpdateOperationsInput No
mageHealth Int | IntFieldUpdateOperationsInput No
arcanistQty Int | IntFieldUpdateOperationsInput No
arcanistHealth Int | IntFieldUpdateOperationsInput No
lightInfantryQty Int | IntFieldUpdateOperationsInput No
lightInfantryHealth Int | IntFieldUpdateOperationsInput No
heavyInfantryQty Int | IntFieldUpdateOperationsInput No
heavyInfantryHealth Int | IntFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

BuildArmyEventUncheckedUpdateManyInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
armyId Int | IntFieldUpdateOperationsInput No
lightCavalryQty Int | IntFieldUpdateOperationsInput No
lightCavalryHealth Int | IntFieldUpdateOperationsInput No
heavyCavalryQty Int | IntFieldUpdateOperationsInput No
heavyCavalryHealth Int | IntFieldUpdateOperationsInput No
archerQty Int | IntFieldUpdateOperationsInput No
archerHealth Int | IntFieldUpdateOperationsInput No
longbowQty Int | IntFieldUpdateOperationsInput No
longbowHealth Int | IntFieldUpdateOperationsInput No
mageQty Int | IntFieldUpdateOperationsInput No
mageHealth Int | IntFieldUpdateOperationsInput No
arcanistQty Int | IntFieldUpdateOperationsInput No
arcanistHealth Int | IntFieldUpdateOperationsInput No
lightInfantryQty Int | IntFieldUpdateOperationsInput No
lightInfantryHealth Int | IntFieldUpdateOperationsInput No
heavyInfantryQty Int | IntFieldUpdateOperationsInput No
heavyInfantryHealth Int | IntFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

BuildBuildingEventCreateInput

Name Type Nullable
eventId String No
buildingId Int No
realmId Int No
buildingIntegrity Int No
count Int No
timestamp DateTime No

BuildBuildingEventUncheckedCreateInput

Name Type Nullable
eventId String No
buildingId Int No
realmId Int No
buildingIntegrity Int No
count Int No
timestamp DateTime No

BuildBuildingEventUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
buildingId Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
buildingIntegrity Int | IntFieldUpdateOperationsInput No
count Int | IntFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

BuildBuildingEventUncheckedUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
buildingId Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
buildingIntegrity Int | IntFieldUpdateOperationsInput No
count Int | IntFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

BuildBuildingEventCreateManyInput

Name Type Nullable
eventId String No
buildingId Int No
realmId Int No
buildingIntegrity Int No
count Int No
timestamp DateTime No

BuildBuildingEventUpdateManyMutationInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
buildingId Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
buildingIntegrity Int | IntFieldUpdateOperationsInput No
count Int | IntFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

BuildBuildingEventUncheckedUpdateManyInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
buildingId Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
buildingIntegrity Int | IntFieldUpdateOperationsInput No
count Int | IntFieldUpdateOperationsInput No
timestamp DateTime | DateTimeFieldUpdateOperationsInput No

IntFilter

Name Type Nullable
equals Int No
in Int No
notIn Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntFilter No

StringFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringFilter No

RealmListRelationFilter

Name Type Nullable
every RealmWhereInput No
some RealmWhereInput No
none RealmWhereInput No

RealmOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

WalletCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
address SortOrder No

WalletAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

WalletMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
address SortOrder No

WalletMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
address SortOrder No

WalletSumOrderByAggregateInput

Name Type Nullable
id SortOrder No

IntWithAggregatesFilter

Name Type Nullable
equals Int No
in Int No
notIn Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

StringWithAggregatesFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

StringNullableFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringNullableFilter | Null Yes

WalletRelationFilter

Name Type Nullable
is WalletWhereInput | Null Yes
isNot WalletWhereInput | Null Yes

FloatFilter

Name Type Nullable
equals Float No
in Float No
notIn Float No
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatFilter No

RelicRelationFilter

Name Type Nullable
is RelicWhereInput | Null Yes
isNot RelicWhereInput | Null Yes

EnumOrderTypeNullableFilter

Name Type Nullable
equals OrderType | Null Yes
in OrderType[] | Null Yes
notIn OrderType[] | Null Yes
not OrderType | NestedEnumOrderTypeNullableFilter | Null Yes

BuildingListRelationFilter

Name Type Nullable
every BuildingWhereInput No
some BuildingWhereInput No
none BuildingWhereInput No

ResourceListRelationFilter

Name Type Nullable
every ResourceWhereInput No
some ResourceWhereInput No
none ResourceWhereInput No

RelicListRelationFilter

Name Type Nullable
every RelicWhereInput No
some RelicWhereInput No
none RelicWhereInput No

RealmTraitListRelationFilter

Name Type Nullable
every RealmTraitWhereInput No
some RealmTraitWhereInput No
none RealmTraitWhereInput No

TroopListRelationFilter

Name Type Nullable
every TroopWhereInput No
some TroopWhereInput No
none TroopWhereInput No

DateTimeNullableFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableFilter | Null Yes

ArmyListRelationFilter

Name Type Nullable
every ArmyWhereInput No
some ArmyWhereInput No
none ArmyWhereInput No

BuildingOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ResourceOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

RelicOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

RealmTraitOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TroopOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ArmyOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

RealmCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
name SortOrder No
owner SortOrder No
bridgedOwner SortOrder No
ownerL2 SortOrder No
settledOwner SortOrder No
wonder SortOrder No
rarityRank SortOrder No
rarityScore SortOrder No
imageUrl SortOrder No
orderType SortOrder No
lastAttacked SortOrder No
lastClaimTime SortOrder No
lastTick SortOrder No
lastVaultTime SortOrder No
longitude SortOrder No
latitude SortOrder No

RealmAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
rarityRank SortOrder No
rarityScore SortOrder No
longitude SortOrder No
latitude SortOrder No

RealmMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
name SortOrder No
owner SortOrder No
bridgedOwner SortOrder No
ownerL2 SortOrder No
settledOwner SortOrder No
wonder SortOrder No
rarityRank SortOrder No
rarityScore SortOrder No
imageUrl SortOrder No
orderType SortOrder No
lastAttacked SortOrder No
lastClaimTime SortOrder No
lastTick SortOrder No
lastVaultTime SortOrder No
longitude SortOrder No
latitude SortOrder No

RealmMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
name SortOrder No
owner SortOrder No
bridgedOwner SortOrder No
ownerL2 SortOrder No
settledOwner SortOrder No
wonder SortOrder No
rarityRank SortOrder No
rarityScore SortOrder No
imageUrl SortOrder No
orderType SortOrder No
lastAttacked SortOrder No
lastClaimTime SortOrder No
lastTick SortOrder No
lastVaultTime SortOrder No
longitude SortOrder No
latitude SortOrder No

RealmSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
rarityRank SortOrder No
rarityScore SortOrder No
longitude SortOrder No
latitude SortOrder No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

FloatWithAggregatesFilter

Name Type Nullable
equals Float No
in Float No
notIn Float No
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedFloatFilter No
_min NestedFloatFilter No
_max NestedFloatFilter No

EnumOrderTypeNullableWithAggregatesFilter

Name Type Nullable
equals OrderType | Null Yes
in OrderType[] | Null Yes
notIn OrderType[] | Null Yes
not OrderType | NestedEnumOrderTypeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumOrderTypeNullableFilter No
_max NestedEnumOrderTypeNullableFilter No

DateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

IntNullableFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableFilter | Null Yes

RealmRelationFilter

Name Type Nullable
is RealmWhereInput | Null Yes
isNot RealmWhereInput | Null Yes

StringNullableListFilter

Name Type Nullable
equals String | Null Yes
has String | Null Yes
hasEvery String No
hasSome String No
isEmpty Boolean No

BuildingRealmIdBuildingIdCompoundUniqueInput

Name Type Nullable
realmId Int No
buildingId Int No

BuildingCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
buildingId SortOrder No
realmId SortOrder No
eventId SortOrder No
buildingIntegrity SortOrder No
builds SortOrder No

BuildingAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
buildingId SortOrder No
realmId SortOrder No
buildingIntegrity SortOrder No

BuildingMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
buildingId SortOrder No
realmId SortOrder No
eventId SortOrder No
buildingIntegrity SortOrder No

BuildingMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
buildingId SortOrder No
realmId SortOrder No
eventId SortOrder No
buildingIntegrity SortOrder No

BuildingSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
buildingId SortOrder No
realmId SortOrder No
buildingIntegrity SortOrder No

IntNullableWithAggregatesFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

DateTimeFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeFilter No

FoodRealmIdBuildingIdCompoundUniqueInput

Name Type Nullable
realmId Int No
buildingId Int No

FoodCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
buildingId SortOrder No
eventId SortOrder No
qty SortOrder No
harvests SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

FoodAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
buildingId SortOrder No
qty SortOrder No
harvests SortOrder No

FoodMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
buildingId SortOrder No
eventId SortOrder No
qty SortOrder No
harvests SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

FoodMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
buildingId SortOrder No
eventId SortOrder No
qty SortOrder No
harvests SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

FoodSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
buildingId SortOrder No
qty SortOrder No
harvests SortOrder No

DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

BoolFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolFilter No

RelicCountOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
heldByRealm SortOrder No
isAnnexed SortOrder No

RelicAvgOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
heldByRealm SortOrder No

RelicMaxOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
heldByRealm SortOrder No
isAnnexed SortOrder No

RelicMinOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
heldByRealm SortOrder No
isAnnexed SortOrder No

RelicSumOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
heldByRealm SortOrder No

BoolWithAggregatesFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

EnumRealmTraitTypeFilter

Name Type Nullable
equals RealmTraitType No
in RealmTraitType[] No
notIn RealmTraitType[] No
not RealmTraitType | NestedEnumRealmTraitTypeFilter No

BuildingRealmTraitConstraintCountOrderByAggregateInput

Name Type Nullable
buildingId SortOrder No
traitType SortOrder No
max SortOrder No

BuildingRealmTraitConstraintAvgOrderByAggregateInput

Name Type Nullable
buildingId SortOrder No
max SortOrder No

BuildingRealmTraitConstraintMaxOrderByAggregateInput

Name Type Nullable
buildingId SortOrder No
traitType SortOrder No
max SortOrder No

BuildingRealmTraitConstraintMinOrderByAggregateInput

Name Type Nullable
buildingId SortOrder No
traitType SortOrder No
max SortOrder No

BuildingRealmTraitConstraintSumOrderByAggregateInput

Name Type Nullable
buildingId SortOrder No
max SortOrder No

EnumRealmTraitTypeWithAggregatesFilter

Name Type Nullable
equals RealmTraitType No
in RealmTraitType[] No
notIn RealmTraitType[] No
not RealmTraitType | NestedEnumRealmTraitTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumRealmTraitTypeFilter No
_max NestedEnumRealmTraitTypeFilter No

LaborRelationFilter

Name Type Nullable
is LaborWhereInput | Null Yes
isNot LaborWhereInput | Null Yes

ResourceResourceIdRealmIdCompoundUniqueInput

Name Type Nullable
resourceId Int No
realmId Int No

ResourceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
resourceId SortOrder No
realmId SortOrder No
level SortOrder No
upgrades SortOrder No

ResourceAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
resourceId SortOrder No
realmId SortOrder No
level SortOrder No

ResourceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
resourceId SortOrder No
realmId SortOrder No
level SortOrder No

ResourceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
resourceId SortOrder No
realmId SortOrder No
level SortOrder No

ResourceSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
resourceId SortOrder No
realmId SortOrder No
level SortOrder No

ResourceRelationFilter

Name Type Nullable
is ResourceWhereInput No
isNot ResourceWhereInput No

LaborRealmIdResourceIdCompoundUniqueInput

Name Type Nullable
realmId Int No
resourceId Int No

LaborCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
resourceId SortOrder No
vaultBalance SortOrder No
balance SortOrder No
lastUpdate SortOrder No
lastEventId SortOrder No
qtyBuilt SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

LaborAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
resourceId SortOrder No
qtyBuilt SortOrder No

LaborMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
resourceId SortOrder No
vaultBalance SortOrder No
balance SortOrder No
lastUpdate SortOrder No
lastEventId SortOrder No
qtyBuilt SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

LaborMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
resourceId SortOrder No
vaultBalance SortOrder No
balance SortOrder No
lastUpdate SortOrder No
lastEventId SortOrder No
qtyBuilt SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

LaborSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
resourceId SortOrder No
qtyBuilt SortOrder No

WalletBalanceAddressTokenIdCompoundUniqueInput

Name Type Nullable
address String No
tokenId Int No

WalletBalanceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
address SortOrder No
tokenId SortOrder No
amount SortOrder No
lastEventId SortOrder No

WalletBalanceAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
tokenId SortOrder No

WalletBalanceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
address SortOrder No
tokenId SortOrder No
amount SortOrder No
lastEventId SortOrder No

WalletBalanceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
address SortOrder No
tokenId SortOrder No
amount SortOrder No
lastEventId SortOrder No

WalletBalanceSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
tokenId SortOrder No

RealmTraitTypeRealmIdCompoundUniqueInput

Name Type Nullable
type RealmTraitType No
realmId Int No

RealmTraitCountOrderByAggregateInput

Name Type Nullable
type SortOrder No
qty SortOrder No
realmId SortOrder No

RealmTraitAvgOrderByAggregateInput

Name Type Nullable
qty SortOrder No
realmId SortOrder No

RealmTraitMaxOrderByAggregateInput

Name Type Nullable
type SortOrder No
qty SortOrder No
realmId SortOrder No

RealmTraitMinOrderByAggregateInput

Name Type Nullable
type SortOrder No
qty SortOrder No
realmId SortOrder No

RealmTraitSumOrderByAggregateInput

Name Type Nullable
qty SortOrder No
realmId SortOrder No

TroopRealmIdIndexSquadSlotCompoundUniqueInput

Name Type Nullable
realmId Int No
index Int No
squadSlot Int No

TroopCountOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
troopId SortOrder No
index SortOrder No
type SortOrder No
tier SortOrder No
building SortOrder No
agility SortOrder No
attack SortOrder No
armor SortOrder No
vitality SortOrder No
wisdom SortOrder No
squadSlot SortOrder No
timestamp SortOrder No

TroopAvgOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
troopId SortOrder No
index SortOrder No
type SortOrder No
tier SortOrder No
building SortOrder No
agility SortOrder No
attack SortOrder No
armor SortOrder No
vitality SortOrder No
wisdom SortOrder No
squadSlot SortOrder No

TroopMaxOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
troopId SortOrder No
index SortOrder No
type SortOrder No
tier SortOrder No
building SortOrder No
agility SortOrder No
attack SortOrder No
armor SortOrder No
vitality SortOrder No
wisdom SortOrder No
squadSlot SortOrder No
timestamp SortOrder No

TroopMinOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
troopId SortOrder No
index SortOrder No
type SortOrder No
tier SortOrder No
building SortOrder No
agility SortOrder No
attack SortOrder No
armor SortOrder No
vitality SortOrder No
wisdom SortOrder No
squadSlot SortOrder No
timestamp SortOrder No

TroopSumOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
troopId SortOrder No
index SortOrder No
type SortOrder No
tier SortOrder No
building SortOrder No
agility SortOrder No
attack SortOrder No
armor SortOrder No
vitality SortOrder No
wisdom SortOrder No
squadSlot SortOrder No

DesiegeCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
winner SortOrder No
attackedTokens SortOrder No
defendedTokens SortOrder No
damageInflicted SortOrder No
eventIndexed SortOrder No
initialHealth SortOrder No
startBlock SortOrder No
endBlock SortOrder No
startedOn SortOrder No

DesiegeAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
winner SortOrder No
attackedTokens SortOrder No
defendedTokens SortOrder No
damageInflicted SortOrder No
initialHealth SortOrder No
startBlock SortOrder No
endBlock SortOrder No

DesiegeMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
winner SortOrder No
attackedTokens SortOrder No
defendedTokens SortOrder No
damageInflicted SortOrder No
eventIndexed SortOrder No
initialHealth SortOrder No
startBlock SortOrder No
endBlock SortOrder No
startedOn SortOrder No

DesiegeMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
winner SortOrder No
attackedTokens SortOrder No
defendedTokens SortOrder No
damageInflicted SortOrder No
eventIndexed SortOrder No
initialHealth SortOrder No
startBlock SortOrder No
endBlock SortOrder No
startedOn SortOrder No

DesiegeSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
winner SortOrder No
attackedTokens SortOrder No
defendedTokens SortOrder No
damageInflicted SortOrder No
initialHealth SortOrder No
startBlock SortOrder No
endBlock SortOrder No

DesiegeActionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
account SortOrder No
amount SortOrder No
amountBoosted SortOrder No
tokenOffset SortOrder No

DesiegeActionAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
amount SortOrder No
amountBoosted SortOrder No
tokenOffset SortOrder No

DesiegeActionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
account SortOrder No
amount SortOrder No
amountBoosted SortOrder No
tokenOffset SortOrder No

DesiegeActionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
account SortOrder No
amount SortOrder No
amountBoosted SortOrder No
tokenOffset SortOrder No

DesiegeActionSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
gameId SortOrder No
amount SortOrder No
amountBoosted SortOrder No
tokenOffset SortOrder No

EventCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
chainId SortOrder No
contract SortOrder No
name SortOrder No
parameters SortOrder No
keys SortOrder No
timestamp SortOrder No
txHash SortOrder No
status SortOrder No

EventAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
status SortOrder No

EventMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
chainId SortOrder No
contract SortOrder No
name SortOrder No
timestamp SortOrder No
txHash SortOrder No
status SortOrder No

EventMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
chainId SortOrder No
contract SortOrder No
name SortOrder No
timestamp SortOrder No
txHash SortOrder No
status SortOrder No

EventSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
status SortOrder No

LastIndexedEventCountOrderByAggregateInput

Name Type Nullable
moduleName SortOrder No
eventId SortOrder No

LastIndexedEventMaxOrderByAggregateInput

Name Type Nullable
moduleName SortOrder No
eventId SortOrder No

LastIndexedEventMinOrderByAggregateInput

Name Type Nullable
moduleName SortOrder No
eventId SortOrder No

LoreEntityRevisionListRelationFilter

Name Type Nullable
every LoreEntityRevisionWhereInput No
some LoreEntityRevisionWhereInput No
none LoreEntityRevisionWhereInput No

LoreEntityRevisionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

LoreEntityCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
owner SortOrder No
ownerDisplayName SortOrder No
kind SortOrder No
eventIndexed SortOrder No

LoreEntityAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
kind SortOrder No

LoreEntityMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
owner SortOrder No
ownerDisplayName SortOrder No
kind SortOrder No
eventIndexed SortOrder No

LoreEntityMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
owner SortOrder No
ownerDisplayName SortOrder No
kind SortOrder No
eventIndexed SortOrder No

LoreEntitySumOrderByAggregateInput

Name Type Nullable
id SortOrder No
kind SortOrder No

LoreEntityRelationFilter

Name Type Nullable
is LoreEntityWhereInput No
isNot LoreEntityWhereInput No

LorePoisOnEntityRevisionsListRelationFilter

Name Type Nullable
every LorePoisOnEntityRevisionsWhereInput No
some LorePoisOnEntityRevisionsWhereInput No
none LorePoisOnEntityRevisionsWhereInput No

LorePropsOnEntityRevisionsListRelationFilter

Name Type Nullable
every LorePropsOnEntityRevisionsWhereInput No
some LorePropsOnEntityRevisionsWhereInput No
none LorePropsOnEntityRevisionsWhereInput No

LorePoisOnEntityRevisionsOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

LorePropsOnEntityRevisionsOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

LoreEntityRevisionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
revisionNumber SortOrder No
arweaveId SortOrder No
title SortOrder No
markdown SortOrder No
excerpt SortOrder No
media_url SortOrder No
createdAt SortOrder No
entityId SortOrder No
eventIndexed SortOrder No

LoreEntityRevisionAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
revisionNumber SortOrder No
entityId SortOrder No

LoreEntityRevisionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
revisionNumber SortOrder No
arweaveId SortOrder No
title SortOrder No
markdown SortOrder No
excerpt SortOrder No
media_url SortOrder No
createdAt SortOrder No
entityId SortOrder No
eventIndexed SortOrder No

LoreEntityRevisionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
revisionNumber SortOrder No
arweaveId SortOrder No
title SortOrder No
markdown SortOrder No
excerpt SortOrder No
media_url SortOrder No
createdAt SortOrder No
entityId SortOrder No
eventIndexed SortOrder No

LoreEntityRevisionSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
revisionNumber SortOrder No
entityId SortOrder No

LorePOICountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
assetType SortOrder No

LorePOIAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

LorePOIMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
assetType SortOrder No

LorePOIMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
assetType SortOrder No

LorePOISumOrderByAggregateInput

Name Type Nullable
id SortOrder No

LorePropCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

LorePropAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

LorePropMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

LorePropMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

LorePropSumOrderByAggregateInput

Name Type Nullable
id SortOrder No

LoreEntityRevisionRelationFilter

Name Type Nullable
is LoreEntityRevisionWhereInput No
isNot LoreEntityRevisionWhereInput No

LorePOIRelationFilter

Name Type Nullable
is LorePOIWhereInput No
isNot LorePOIWhereInput No

LorePoisOnEntityRevisionsCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
entityRevisionId SortOrder No
poiId SortOrder No
assetId SortOrder No

LorePoisOnEntityRevisionsAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
entityRevisionId SortOrder No
poiId SortOrder No

LorePoisOnEntityRevisionsMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
entityRevisionId SortOrder No
poiId SortOrder No
assetId SortOrder No

LorePoisOnEntityRevisionsMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
entityRevisionId SortOrder No
poiId SortOrder No
assetId SortOrder No

LorePoisOnEntityRevisionsSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
entityRevisionId SortOrder No
poiId SortOrder No

LorePropRelationFilter

Name Type Nullable
is LorePropWhereInput No
isNot LorePropWhereInput No

LorePropsOnEntityRevisionsCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
entityRevisionId SortOrder No
propId SortOrder No
value SortOrder No

LorePropsOnEntityRevisionsAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
entityRevisionId SortOrder No
propId SortOrder No

LorePropsOnEntityRevisionsMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
entityRevisionId SortOrder No
propId SortOrder No
value SortOrder No

LorePropsOnEntityRevisionsMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
entityRevisionId SortOrder No
propId SortOrder No
value SortOrder No

LorePropsOnEntityRevisionsSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
entityRevisionId SortOrder No
propId SortOrder No

ExchangeRateDateHourTokenIdCompoundUniqueInput

Name Type Nullable
date String No
hour Int No
tokenId Int No

ExchangeRateCountOrderByAggregateInput

Name Type Nullable
date SortOrder No
hour SortOrder No
tokenId SortOrder No
amount SortOrder No
buyAmount SortOrder No
sellAmount SortOrder No
currencyReserve SortOrder No
tokenReserve SortOrder No
lpAmount SortOrder No

ExchangeRateAvgOrderByAggregateInput

Name Type Nullable
hour SortOrder No
tokenId SortOrder No

ExchangeRateMaxOrderByAggregateInput

Name Type Nullable
date SortOrder No
hour SortOrder No
tokenId SortOrder No
amount SortOrder No
buyAmount SortOrder No
sellAmount SortOrder No
currencyReserve SortOrder No
tokenReserve SortOrder No
lpAmount SortOrder No

ExchangeRateMinOrderByAggregateInput

Name Type Nullable
date SortOrder No
hour SortOrder No
tokenId SortOrder No
amount SortOrder No
buyAmount SortOrder No
sellAmount SortOrder No
currencyReserve SortOrder No
tokenReserve SortOrder No
lpAmount SortOrder No

ExchangeRateSumOrderByAggregateInput

Name Type Nullable
hour SortOrder No
tokenId SortOrder No

JsonFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No

RealmHistoryEventIdEventTypeCompoundUniqueInput

Name Type Nullable
eventId String No
eventType String No

RealmHistoryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
eventType SortOrder No
realmId SortOrder No
bastionId SortOrder No
realmOwner SortOrder No
realmName SortOrder No
realmOrder SortOrder No
data SortOrder No
timestamp SortOrder No
transactionHash SortOrder No

RealmHistoryAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
bastionId SortOrder No

RealmHistoryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
eventType SortOrder No
realmId SortOrder No
bastionId SortOrder No
realmOwner SortOrder No
realmName SortOrder No
realmOrder SortOrder No
timestamp SortOrder No
transactionHash SortOrder No

RealmHistoryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
eventType SortOrder No
realmId SortOrder No
bastionId SortOrder No
realmOwner SortOrder No
realmName SortOrder No
realmOrder SortOrder No
timestamp SortOrder No
transactionHash SortOrder No

RealmHistorySumOrderByAggregateInput

Name Type Nullable
id SortOrder No
realmId SortOrder No
bastionId SortOrder No

JsonWithAggregatesFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No
_count NestedIntFilter No
_min NestedJsonFilter No
_max NestedJsonFilter No

CombatHistoryDefendRealmIdEventIdCompoundUniqueInput

Name Type Nullable
defendRealmId Int No
eventId String No

CombatHistoryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
eventType SortOrder No
attackRealmId SortOrder No
attackRealmOwner SortOrder No
attackSquad SortOrder No
defendRealmId SortOrder No
defendRealmOwner SortOrder No
defendSquad SortOrder No
timestamp SortOrder No
transactionHash SortOrder No
outcome SortOrder No
attackType SortOrder No
hitPoints SortOrder No

CombatHistoryAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
attackRealmId SortOrder No
defendRealmId SortOrder No
outcome SortOrder No
attackType SortOrder No
hitPoints SortOrder No

CombatHistoryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
eventType SortOrder No
attackRealmId SortOrder No
attackRealmOwner SortOrder No
defendRealmId SortOrder No
defendRealmOwner SortOrder No
timestamp SortOrder No
transactionHash SortOrder No
outcome SortOrder No
attackType SortOrder No
hitPoints SortOrder No

CombatHistoryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
eventType SortOrder No
attackRealmId SortOrder No
attackRealmOwner SortOrder No
defendRealmId SortOrder No
defendRealmOwner SortOrder No
timestamp SortOrder No
transactionHash SortOrder No
outcome SortOrder No
attackType SortOrder No
hitPoints SortOrder No

CombatHistorySumOrderByAggregateInput

Name Type Nullable
id SortOrder No
attackRealmId SortOrder No
defendRealmId SortOrder No
outcome SortOrder No
attackType SortOrder No
hitPoints SortOrder No

DecimalFilter

Name Type Nullable
equals Decimal No
in Decimal[] No
notIn Decimal[] No
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalFilter No

ResourceTransferResourceIdEventIdCompoundUniqueInput

Name Type Nullable
resourceId Int No
eventId String No

ResourceTransferCountOrderByAggregateInput

Name Type Nullable
resourceId SortOrder No
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
operatorAddress SortOrder No
fromAddress SortOrder No
toAddress SortOrder No
amount SortOrder No
amountValue SortOrder No
transactionHash SortOrder No
timestamp SortOrder No

ResourceTransferAvgOrderByAggregateInput

Name Type Nullable
resourceId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
amountValue SortOrder No

ResourceTransferMaxOrderByAggregateInput

Name Type Nullable
resourceId SortOrder No
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
operatorAddress SortOrder No
fromAddress SortOrder No
toAddress SortOrder No
amount SortOrder No
amountValue SortOrder No
transactionHash SortOrder No
timestamp SortOrder No

ResourceTransferMinOrderByAggregateInput

Name Type Nullable
resourceId SortOrder No
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
operatorAddress SortOrder No
fromAddress SortOrder No
toAddress SortOrder No
amount SortOrder No
amountValue SortOrder No
transactionHash SortOrder No
timestamp SortOrder No

ResourceTransferSumOrderByAggregateInput

Name Type Nullable
resourceId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
amountValue SortOrder No

DecimalWithAggregatesFilter

Name Type Nullable
equals Decimal No
in Decimal[] No
notIn Decimal[] No
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedDecimalFilter No
_sum NestedDecimalFilter No
_min NestedDecimalFilter No
_max NestedDecimalFilter No

LordTransferCountOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
fromAddress SortOrder No
toAddress SortOrder No
amount SortOrder No
amountValue SortOrder No
transactionHash SortOrder No
timestamp SortOrder No

LordTransferAvgOrderByAggregateInput

Name Type Nullable
blockNumber SortOrder No
transactionNumber SortOrder No
amountValue SortOrder No

LordTransferMaxOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
fromAddress SortOrder No
toAddress SortOrder No
amount SortOrder No
amountValue SortOrder No
transactionHash SortOrder No
timestamp SortOrder No

LordTransferMinOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
blockNumber SortOrder No
transactionNumber SortOrder No
fromAddress SortOrder No
toAddress SortOrder No
amount SortOrder No
amountValue SortOrder No
transactionHash SortOrder No
timestamp SortOrder No

LordTransferSumOrderByAggregateInput

Name Type Nullable
blockNumber SortOrder No
transactionNumber SortOrder No
amountValue SortOrder No

ArmyRealmIdArmyIdCompoundUniqueInput

Name Type Nullable
realmId Int No
armyId Int No

ArmyCountOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
armyId SortOrder No
orderId SortOrder No
destinationRealmId SortOrder No
destinationArrivalTime SortOrder No
armyPacked SortOrder No
lastAttacked SortOrder No
xp SortOrder No
level SortOrder No
callSign SortOrder No
lightCavalryQty SortOrder No
lightCavalryHealth SortOrder No
heavyCavalryQty SortOrder No
heavyCavalryHealth SortOrder No
archerQty SortOrder No
archerHealth SortOrder No
longbowQty SortOrder No
longbowHealth SortOrder No
mageQty SortOrder No
mageHealth SortOrder No
arcanistQty SortOrder No
arcanistHealth SortOrder No
lightInfantryQty SortOrder No
lightInfantryHealth SortOrder No
heavyInfantryQty SortOrder No
heavyInfantryHealth SortOrder No
bastionId SortOrder No
bastionPastLocation SortOrder No
bastionCurrentLocation SortOrder No
bastionArrivalBlock SortOrder No

ArmyAvgOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
armyId SortOrder No
orderId SortOrder No
destinationRealmId SortOrder No
armyPacked SortOrder No
xp SortOrder No
level SortOrder No
callSign SortOrder No
lightCavalryQty SortOrder No
lightCavalryHealth SortOrder No
heavyCavalryQty SortOrder No
heavyCavalryHealth SortOrder No
archerQty SortOrder No
archerHealth SortOrder No
longbowQty SortOrder No
longbowHealth SortOrder No
mageQty SortOrder No
mageHealth SortOrder No
arcanistQty SortOrder No
arcanistHealth SortOrder No
lightInfantryQty SortOrder No
lightInfantryHealth SortOrder No
heavyInfantryQty SortOrder No
heavyInfantryHealth SortOrder No
bastionId SortOrder No
bastionPastLocation SortOrder No
bastionCurrentLocation SortOrder No
bastionArrivalBlock SortOrder No

ArmyMaxOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
armyId SortOrder No
orderId SortOrder No
destinationRealmId SortOrder No
destinationArrivalTime SortOrder No
armyPacked SortOrder No
lastAttacked SortOrder No
xp SortOrder No
level SortOrder No
callSign SortOrder No
lightCavalryQty SortOrder No
lightCavalryHealth SortOrder No
heavyCavalryQty SortOrder No
heavyCavalryHealth SortOrder No
archerQty SortOrder No
archerHealth SortOrder No
longbowQty SortOrder No
longbowHealth SortOrder No
mageQty SortOrder No
mageHealth SortOrder No
arcanistQty SortOrder No
arcanistHealth SortOrder No
lightInfantryQty SortOrder No
lightInfantryHealth SortOrder No
heavyInfantryQty SortOrder No
heavyInfantryHealth SortOrder No
bastionId SortOrder No
bastionPastLocation SortOrder No
bastionCurrentLocation SortOrder No
bastionArrivalBlock SortOrder No

ArmyMinOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
armyId SortOrder No
orderId SortOrder No
destinationRealmId SortOrder No
destinationArrivalTime SortOrder No
armyPacked SortOrder No
lastAttacked SortOrder No
xp SortOrder No
level SortOrder No
callSign SortOrder No
lightCavalryQty SortOrder No
lightCavalryHealth SortOrder No
heavyCavalryQty SortOrder No
heavyCavalryHealth SortOrder No
archerQty SortOrder No
archerHealth SortOrder No
longbowQty SortOrder No
longbowHealth SortOrder No
mageQty SortOrder No
mageHealth SortOrder No
arcanistQty SortOrder No
arcanistHealth SortOrder No
lightInfantryQty SortOrder No
lightInfantryHealth SortOrder No
heavyInfantryQty SortOrder No
heavyInfantryHealth SortOrder No
bastionId SortOrder No
bastionPastLocation SortOrder No
bastionCurrentLocation SortOrder No
bastionArrivalBlock SortOrder No

ArmySumOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
armyId SortOrder No
orderId SortOrder No
destinationRealmId SortOrder No
armyPacked SortOrder No
xp SortOrder No
level SortOrder No
callSign SortOrder No
lightCavalryQty SortOrder No
lightCavalryHealth SortOrder No
heavyCavalryQty SortOrder No
heavyCavalryHealth SortOrder No
archerQty SortOrder No
archerHealth SortOrder No
longbowQty SortOrder No
longbowHealth SortOrder No
mageQty SortOrder No
mageHealth SortOrder No
arcanistQty SortOrder No
arcanistHealth SortOrder No
lightInfantryQty SortOrder No
lightInfantryHealth SortOrder No
heavyInfantryQty SortOrder No
heavyInfantryHealth SortOrder No
bastionId SortOrder No
bastionPastLocation SortOrder No
bastionCurrentLocation SortOrder No
bastionArrivalBlock SortOrder No

BastionCountOrderByAggregateInput

Name Type Nullable
bastionId SortOrder No
longitude SortOrder No
latitude SortOrder No

BastionAvgOrderByAggregateInput

Name Type Nullable
bastionId SortOrder No
longitude SortOrder No
latitude SortOrder No

BastionMaxOrderByAggregateInput

Name Type Nullable
bastionId SortOrder No
longitude SortOrder No
latitude SortOrder No

BastionMinOrderByAggregateInput

Name Type Nullable
bastionId SortOrder No
longitude SortOrder No
latitude SortOrder No

BastionSumOrderByAggregateInput

Name Type Nullable
bastionId SortOrder No
longitude SortOrder No
latitude SortOrder No

BastionLocationBastionIdLocationIdCompoundUniqueInput

Name Type Nullable
bastionId Int No
locationId Int No

BastionLocationCountOrderByAggregateInput

Name Type Nullable
bastionId SortOrder No
locationId SortOrder No
defendingOrderId SortOrder No
takenBlock SortOrder No

BastionLocationAvgOrderByAggregateInput

Name Type Nullable
bastionId SortOrder No
locationId SortOrder No
defendingOrderId SortOrder No
takenBlock SortOrder No

BastionLocationMaxOrderByAggregateInput

Name Type Nullable
bastionId SortOrder No
locationId SortOrder No
defendingOrderId SortOrder No
takenBlock SortOrder No

BastionLocationMinOrderByAggregateInput

Name Type Nullable
bastionId SortOrder No
locationId SortOrder No
defendingOrderId SortOrder No
takenBlock SortOrder No

BastionLocationSumOrderByAggregateInput

Name Type Nullable
bastionId SortOrder No
locationId SortOrder No
defendingOrderId SortOrder No
takenBlock SortOrder No

TravelCountOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
contractId SortOrder No
tokenId SortOrder No
nestedId SortOrder No
locationContractId SortOrder No
locationTokenId SortOrder No
locationNestedId SortOrder No
destinationContractId SortOrder No
destinationTokenId SortOrder No
destinationNestedId SortOrder No
destinationArrivalTime SortOrder No
timestamp SortOrder No

TravelAvgOrderByAggregateInput

Name Type Nullable
contractId SortOrder No
tokenId SortOrder No
nestedId SortOrder No
locationContractId SortOrder No
locationTokenId SortOrder No
locationNestedId SortOrder No
destinationContractId SortOrder No
destinationTokenId SortOrder No
destinationNestedId SortOrder No

TravelMaxOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
contractId SortOrder No
tokenId SortOrder No
nestedId SortOrder No
locationContractId SortOrder No
locationTokenId SortOrder No
locationNestedId SortOrder No
destinationContractId SortOrder No
destinationTokenId SortOrder No
destinationNestedId SortOrder No
destinationArrivalTime SortOrder No
timestamp SortOrder No

TravelMinOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
contractId SortOrder No
tokenId SortOrder No
nestedId SortOrder No
locationContractId SortOrder No
locationTokenId SortOrder No
locationNestedId SortOrder No
destinationContractId SortOrder No
destinationTokenId SortOrder No
destinationNestedId SortOrder No
destinationArrivalTime SortOrder No
timestamp SortOrder No

TravelSumOrderByAggregateInput

Name Type Nullable
contractId SortOrder No
tokenId SortOrder No
nestedId SortOrder No
locationContractId SortOrder No
locationTokenId SortOrder No
locationNestedId SortOrder No
destinationContractId SortOrder No
destinationTokenId SortOrder No
destinationNestedId SortOrder No

EnumExchangeEventTypeFilter

Name Type Nullable
equals ExchangeEventType No
in ExchangeEventType[] No
notIn ExchangeEventType[] No
not ExchangeEventType | NestedEnumExchangeEventTypeFilter No

ExchangeEventCountOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
type SortOrder No
resourceId SortOrder No
address SortOrder No
currencyAmount SortOrder No
currencyAmountValue SortOrder No
resourceAmount SortOrder No
resourceAmountValue SortOrder No
timestamp SortOrder No

ExchangeEventAvgOrderByAggregateInput

Name Type Nullable
resourceId SortOrder No
currencyAmountValue SortOrder No
resourceAmountValue SortOrder No

ExchangeEventMaxOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
type SortOrder No
resourceId SortOrder No
address SortOrder No
currencyAmount SortOrder No
currencyAmountValue SortOrder No
resourceAmount SortOrder No
resourceAmountValue SortOrder No
timestamp SortOrder No

ExchangeEventMinOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
type SortOrder No
resourceId SortOrder No
address SortOrder No
currencyAmount SortOrder No
currencyAmountValue SortOrder No
resourceAmount SortOrder No
resourceAmountValue SortOrder No
timestamp SortOrder No

ExchangeEventSumOrderByAggregateInput

Name Type Nullable
resourceId SortOrder No
currencyAmountValue SortOrder No
resourceAmountValue SortOrder No


BuildArmyEventCountOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
realmId SortOrder No
armyId SortOrder No
lightCavalryQty SortOrder No
lightCavalryHealth SortOrder No
heavyCavalryQty SortOrder No
heavyCavalryHealth SortOrder No
archerQty SortOrder No
archerHealth SortOrder No
longbowQty SortOrder No
longbowHealth SortOrder No
mageQty SortOrder No
mageHealth SortOrder No
arcanistQty SortOrder No
arcanistHealth SortOrder No
lightInfantryQty SortOrder No
lightInfantryHealth SortOrder No
heavyInfantryQty SortOrder No
heavyInfantryHealth SortOrder No
timestamp SortOrder No

BuildArmyEventAvgOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
armyId SortOrder No
lightCavalryQty SortOrder No
lightCavalryHealth SortOrder No
heavyCavalryQty SortOrder No
heavyCavalryHealth SortOrder No
archerQty SortOrder No
archerHealth SortOrder No
longbowQty SortOrder No
longbowHealth SortOrder No
mageQty SortOrder No
mageHealth SortOrder No
arcanistQty SortOrder No
arcanistHealth SortOrder No
lightInfantryQty SortOrder No
lightInfantryHealth SortOrder No
heavyInfantryQty SortOrder No
heavyInfantryHealth SortOrder No

BuildArmyEventMaxOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
realmId SortOrder No
armyId SortOrder No
lightCavalryQty SortOrder No
lightCavalryHealth SortOrder No
heavyCavalryQty SortOrder No
heavyCavalryHealth SortOrder No
archerQty SortOrder No
archerHealth SortOrder No
longbowQty SortOrder No
longbowHealth SortOrder No
mageQty SortOrder No
mageHealth SortOrder No
arcanistQty SortOrder No
arcanistHealth SortOrder No
lightInfantryQty SortOrder No
lightInfantryHealth SortOrder No
heavyInfantryQty SortOrder No
heavyInfantryHealth SortOrder No
timestamp SortOrder No

BuildArmyEventMinOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
realmId SortOrder No
armyId SortOrder No
lightCavalryQty SortOrder No
lightCavalryHealth SortOrder No
heavyCavalryQty SortOrder No
heavyCavalryHealth SortOrder No
archerQty SortOrder No
archerHealth SortOrder No
longbowQty SortOrder No
longbowHealth SortOrder No
mageQty SortOrder No
mageHealth SortOrder No
arcanistQty SortOrder No
arcanistHealth SortOrder No
lightInfantryQty SortOrder No
lightInfantryHealth SortOrder No
heavyInfantryQty SortOrder No
heavyInfantryHealth SortOrder No
timestamp SortOrder No

BuildArmyEventSumOrderByAggregateInput

Name Type Nullable
realmId SortOrder No
armyId SortOrder No
lightCavalryQty SortOrder No
lightCavalryHealth SortOrder No
heavyCavalryQty SortOrder No
heavyCavalryHealth SortOrder No
archerQty SortOrder No
archerHealth SortOrder No
longbowQty SortOrder No
longbowHealth SortOrder No
mageQty SortOrder No
mageHealth SortOrder No
arcanistQty SortOrder No
arcanistHealth SortOrder No
lightInfantryQty SortOrder No
lightInfantryHealth SortOrder No
heavyInfantryQty SortOrder No
heavyInfantryHealth SortOrder No

BuildBuildingEventCountOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
buildingId SortOrder No
realmId SortOrder No
buildingIntegrity SortOrder No
count SortOrder No
timestamp SortOrder No

BuildBuildingEventAvgOrderByAggregateInput

Name Type Nullable
buildingId SortOrder No
realmId SortOrder No
buildingIntegrity SortOrder No
count SortOrder No

BuildBuildingEventMaxOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
buildingId SortOrder No
realmId SortOrder No
buildingIntegrity SortOrder No
count SortOrder No
timestamp SortOrder No

BuildBuildingEventMinOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
buildingId SortOrder No
realmId SortOrder No
buildingIntegrity SortOrder No
count SortOrder No
timestamp SortOrder No

BuildBuildingEventSumOrderByAggregateInput

Name Type Nullable
buildingId SortOrder No
realmId SortOrder No
buildingIntegrity SortOrder No
count SortOrder No







StringFieldUpdateOperationsInput

Name Type Nullable
set String No

RealmUpdateManyWithoutWalletNestedInput

Name Type Nullable
create RealmCreateWithoutWalletInput | RealmCreateWithoutWalletInput[] | RealmUncheckedCreateWithoutWalletInput | RealmUncheckedCreateWithoutWalletInput[] No
connectOrCreate RealmCreateOrConnectWithoutWalletInput | RealmCreateOrConnectWithoutWalletInput[] No
upsert RealmUpsertWithWhereUniqueWithoutWalletInput | RealmUpsertWithWhereUniqueWithoutWalletInput[] No
createMany RealmCreateManyWalletInputEnvelope No
set RealmWhereUniqueInput | RealmWhereUniqueInput[] No
disconnect RealmWhereUniqueInput | RealmWhereUniqueInput[] No
delete RealmWhereUniqueInput | RealmWhereUniqueInput[] No
connect RealmWhereUniqueInput | RealmWhereUniqueInput[] No
update RealmUpdateWithWhereUniqueWithoutWalletInput | RealmUpdateWithWhereUniqueWithoutWalletInput[] No
updateMany RealmUpdateManyWithWhereWithoutWalletInput | RealmUpdateManyWithWhereWithoutWalletInput[] No
deleteMany RealmScalarWhereInput | RealmScalarWhereInput[] No

RealmUpdateManyWithoutWalletL2NestedInput

Name Type Nullable
create RealmCreateWithoutWalletL2Input | RealmCreateWithoutWalletL2Input[] | RealmUncheckedCreateWithoutWalletL2Input | RealmUncheckedCreateWithoutWalletL2Input[] No
connectOrCreate RealmCreateOrConnectWithoutWalletL2Input | RealmCreateOrConnectWithoutWalletL2Input[] No
upsert RealmUpsertWithWhereUniqueWithoutWalletL2Input | RealmUpsertWithWhereUniqueWithoutWalletL2Input[] No
createMany RealmCreateManyWalletL2InputEnvelope No
set RealmWhereUniqueInput | RealmWhereUniqueInput[] No
disconnect RealmWhereUniqueInput | RealmWhereUniqueInput[] No
delete RealmWhereUniqueInput | RealmWhereUniqueInput[] No
connect RealmWhereUniqueInput | RealmWhereUniqueInput[] No
update RealmUpdateWithWhereUniqueWithoutWalletL2Input | RealmUpdateWithWhereUniqueWithoutWalletL2Input[] No
updateMany RealmUpdateManyWithWhereWithoutWalletL2Input | RealmUpdateManyWithWhereWithoutWalletL2Input[] No
deleteMany RealmScalarWhereInput | RealmScalarWhereInput[] No

RealmUpdateManyWithoutWalletSettledNestedInput

Name Type Nullable
create RealmCreateWithoutWalletSettledInput | RealmCreateWithoutWalletSettledInput[] | RealmUncheckedCreateWithoutWalletSettledInput | RealmUncheckedCreateWithoutWalletSettledInput[] No
connectOrCreate RealmCreateOrConnectWithoutWalletSettledInput | RealmCreateOrConnectWithoutWalletSettledInput[] No
upsert RealmUpsertWithWhereUniqueWithoutWalletSettledInput | RealmUpsertWithWhereUniqueWithoutWalletSettledInput[] No
createMany RealmCreateManyWalletSettledInputEnvelope No
set RealmWhereUniqueInput | RealmWhereUniqueInput[] No
disconnect RealmWhereUniqueInput | RealmWhereUniqueInput[] No
delete RealmWhereUniqueInput | RealmWhereUniqueInput[] No
connect RealmWhereUniqueInput | RealmWhereUniqueInput[] No
update RealmUpdateWithWhereUniqueWithoutWalletSettledInput | RealmUpdateWithWhereUniqueWithoutWalletSettledInput[] No
updateMany RealmUpdateManyWithWhereWithoutWalletSettledInput | RealmUpdateManyWithWhereWithoutWalletSettledInput[] No
deleteMany RealmScalarWhereInput | RealmScalarWhereInput[] No

IntFieldUpdateOperationsInput

Name Type Nullable
set Int No
increment Int No
decrement Int No
multiply Int No
divide Int No

RealmUncheckedUpdateManyWithoutWalletNestedInput

Name Type Nullable
create RealmCreateWithoutWalletInput | RealmCreateWithoutWalletInput[] | RealmUncheckedCreateWithoutWalletInput | RealmUncheckedCreateWithoutWalletInput[] No
connectOrCreate RealmCreateOrConnectWithoutWalletInput | RealmCreateOrConnectWithoutWalletInput[] No
upsert RealmUpsertWithWhereUniqueWithoutWalletInput | RealmUpsertWithWhereUniqueWithoutWalletInput[] No
createMany RealmCreateManyWalletInputEnvelope No
set RealmWhereUniqueInput | RealmWhereUniqueInput[] No
disconnect RealmWhereUniqueInput | RealmWhereUniqueInput[] No
delete RealmWhereUniqueInput | RealmWhereUniqueInput[] No
connect RealmWhereUniqueInput | RealmWhereUniqueInput[] No
update RealmUpdateWithWhereUniqueWithoutWalletInput | RealmUpdateWithWhereUniqueWithoutWalletInput[] No
updateMany RealmUpdateManyWithWhereWithoutWalletInput | RealmUpdateManyWithWhereWithoutWalletInput[] No
deleteMany RealmScalarWhereInput | RealmScalarWhereInput[] No

RealmUncheckedUpdateManyWithoutWalletL2NestedInput

Name Type Nullable
create RealmCreateWithoutWalletL2Input | RealmCreateWithoutWalletL2Input[] | RealmUncheckedCreateWithoutWalletL2Input | RealmUncheckedCreateWithoutWalletL2Input[] No
connectOrCreate RealmCreateOrConnectWithoutWalletL2Input | RealmCreateOrConnectWithoutWalletL2Input[] No
upsert RealmUpsertWithWhereUniqueWithoutWalletL2Input | RealmUpsertWithWhereUniqueWithoutWalletL2Input[] No
createMany RealmCreateManyWalletL2InputEnvelope No
set RealmWhereUniqueInput | RealmWhereUniqueInput[] No
disconnect RealmWhereUniqueInput | RealmWhereUniqueInput[] No
delete RealmWhereUniqueInput | RealmWhereUniqueInput[] No
connect RealmWhereUniqueInput | RealmWhereUniqueInput[] No
update RealmUpdateWithWhereUniqueWithoutWalletL2Input | RealmUpdateWithWhereUniqueWithoutWalletL2Input[] No
updateMany RealmUpdateManyWithWhereWithoutWalletL2Input | RealmUpdateManyWithWhereWithoutWalletL2Input[] No
deleteMany RealmScalarWhereInput | RealmScalarWhereInput[] No

RealmUncheckedUpdateManyWithoutWalletSettledNestedInput

Name Type Nullable
create RealmCreateWithoutWalletSettledInput | RealmCreateWithoutWalletSettledInput[] | RealmUncheckedCreateWithoutWalletSettledInput | RealmUncheckedCreateWithoutWalletSettledInput[] No
connectOrCreate RealmCreateOrConnectWithoutWalletSettledInput | RealmCreateOrConnectWithoutWalletSettledInput[] No
upsert RealmUpsertWithWhereUniqueWithoutWalletSettledInput | RealmUpsertWithWhereUniqueWithoutWalletSettledInput[] No
createMany RealmCreateManyWalletSettledInputEnvelope No
set RealmWhereUniqueInput | RealmWhereUniqueInput[] No
disconnect RealmWhereUniqueInput | RealmWhereUniqueInput[] No
delete RealmWhereUniqueInput | RealmWhereUniqueInput[] No
connect RealmWhereUniqueInput | RealmWhereUniqueInput[] No
update RealmUpdateWithWhereUniqueWithoutWalletSettledInput | RealmUpdateWithWhereUniqueWithoutWalletSettledInput[] No
updateMany RealmUpdateManyWithWhereWithoutWalletSettledInput | RealmUpdateManyWithWhereWithoutWalletSettledInput[] No
deleteMany RealmScalarWhereInput | RealmScalarWhereInput[] No

WalletCreateNestedOneWithoutRealmsL1Input

Name Type Nullable
create WalletCreateWithoutRealmsL1Input | WalletUncheckedCreateWithoutRealmsL1Input No
connectOrCreate WalletCreateOrConnectWithoutRealmsL1Input No
connect WalletWhereUniqueInput No

WalletCreateNestedOneWithoutRealmsL2Input

Name Type Nullable
create WalletCreateWithoutRealmsL2Input | WalletUncheckedCreateWithoutRealmsL2Input No
connectOrCreate WalletCreateOrConnectWithoutRealmsL2Input No
connect WalletWhereUniqueInput No

WalletCreateNestedOneWithoutRealmsSettledInput

Name Type Nullable
create WalletCreateWithoutRealmsSettledInput | WalletUncheckedCreateWithoutRealmsSettledInput No
connectOrCreate WalletCreateOrConnectWithoutRealmsSettledInput No
connect WalletWhereUniqueInput No

RelicCreateNestedOneWithoutOriginRealmInput

Name Type Nullable
create RelicCreateWithoutOriginRealmInput | RelicUncheckedCreateWithoutOriginRealmInput No
connectOrCreate RelicCreateOrConnectWithoutOriginRealmInput No
connect RelicWhereUniqueInput No







RelicUncheckedCreateNestedOneWithoutOriginRealmInput

Name Type Nullable
create RelicCreateWithoutOriginRealmInput | RelicUncheckedCreateWithoutOriginRealmInput No
connectOrCreate RelicCreateOrConnectWithoutOriginRealmInput No
connect RelicWhereUniqueInput No







NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

WalletUpdateOneWithoutRealmsL1NestedInput

Name Type Nullable
create WalletCreateWithoutRealmsL1Input | WalletUncheckedCreateWithoutRealmsL1Input No
connectOrCreate WalletCreateOrConnectWithoutRealmsL1Input No
upsert WalletUpsertWithoutRealmsL1Input No
disconnect Boolean No
delete Boolean No
connect WalletWhereUniqueInput No
update WalletUpdateWithoutRealmsL1Input | WalletUncheckedUpdateWithoutRealmsL1Input No

WalletUpdateOneWithoutRealmsL2NestedInput

Name Type Nullable
create WalletCreateWithoutRealmsL2Input | WalletUncheckedCreateWithoutRealmsL2Input No
connectOrCreate WalletCreateOrConnectWithoutRealmsL2Input No
upsert WalletUpsertWithoutRealmsL2Input No
disconnect Boolean No
delete Boolean No
connect WalletWhereUniqueInput No
update WalletUpdateWithoutRealmsL2Input | WalletUncheckedUpdateWithoutRealmsL2Input No


FloatFieldUpdateOperationsInput

Name Type Nullable
set Float No
increment Float No
decrement Float No
multiply Float No
divide Float No

RelicUpdateOneWithoutOriginRealmNestedInput

Name Type Nullable
create RelicCreateWithoutOriginRealmInput | RelicUncheckedCreateWithoutOriginRealmInput No
connectOrCreate RelicCreateOrConnectWithoutOriginRealmInput No
upsert RelicUpsertWithoutOriginRealmInput No
disconnect Boolean No
delete Boolean No
connect RelicWhereUniqueInput No
update RelicUpdateWithoutOriginRealmInput | RelicUncheckedUpdateWithoutOriginRealmInput No

NullableEnumOrderTypeFieldUpdateOperationsInput

Name Type Nullable
set OrderType | Null Yes

BuildingUpdateManyWithoutRealmNestedInput

Name Type Nullable
create BuildingCreateWithoutRealmInput | BuildingCreateWithoutRealmInput[] | BuildingUncheckedCreateWithoutRealmInput | BuildingUncheckedCreateWithoutRealmInput[] No
connectOrCreate BuildingCreateOrConnectWithoutRealmInput | BuildingCreateOrConnectWithoutRealmInput[] No
upsert BuildingUpsertWithWhereUniqueWithoutRealmInput | BuildingUpsertWithWhereUniqueWithoutRealmInput[] No
createMany BuildingCreateManyRealmInputEnvelope No
set BuildingWhereUniqueInput | BuildingWhereUniqueInput[] No
disconnect BuildingWhereUniqueInput | BuildingWhereUniqueInput[] No
delete BuildingWhereUniqueInput | BuildingWhereUniqueInput[] No
connect BuildingWhereUniqueInput | BuildingWhereUniqueInput[] No
update BuildingUpdateWithWhereUniqueWithoutRealmInput | BuildingUpdateWithWhereUniqueWithoutRealmInput[] No
updateMany BuildingUpdateManyWithWhereWithoutRealmInput | BuildingUpdateManyWithWhereWithoutRealmInput[] No
deleteMany BuildingScalarWhereInput | BuildingScalarWhereInput[] No

ResourceUpdateManyWithoutRealmNestedInput

Name Type Nullable
create ResourceCreateWithoutRealmInput | ResourceCreateWithoutRealmInput[] | ResourceUncheckedCreateWithoutRealmInput | ResourceUncheckedCreateWithoutRealmInput[] No
connectOrCreate ResourceCreateOrConnectWithoutRealmInput | ResourceCreateOrConnectWithoutRealmInput[] No
upsert ResourceUpsertWithWhereUniqueWithoutRealmInput | ResourceUpsertWithWhereUniqueWithoutRealmInput[] No
createMany ResourceCreateManyRealmInputEnvelope No
set ResourceWhereUniqueInput | ResourceWhereUniqueInput[] No
disconnect ResourceWhereUniqueInput | ResourceWhereUniqueInput[] No
delete ResourceWhereUniqueInput | ResourceWhereUniqueInput[] No
connect ResourceWhereUniqueInput | ResourceWhereUniqueInput[] No
update ResourceUpdateWithWhereUniqueWithoutRealmInput | ResourceUpdateWithWhereUniqueWithoutRealmInput[] No
updateMany ResourceUpdateManyWithWhereWithoutRealmInput | ResourceUpdateManyWithWhereWithoutRealmInput[] No
deleteMany ResourceScalarWhereInput | ResourceScalarWhereInput[] No

RelicUpdateManyWithoutRealmHolderNestedInput

Name Type Nullable
create RelicCreateWithoutRealmHolderInput | RelicCreateWithoutRealmHolderInput[] | RelicUncheckedCreateWithoutRealmHolderInput | RelicUncheckedCreateWithoutRealmHolderInput[] No
connectOrCreate RelicCreateOrConnectWithoutRealmHolderInput | RelicCreateOrConnectWithoutRealmHolderInput[] No
upsert RelicUpsertWithWhereUniqueWithoutRealmHolderInput | RelicUpsertWithWhereUniqueWithoutRealmHolderInput[] No
createMany RelicCreateManyRealmHolderInputEnvelope No
set RelicWhereUniqueInput | RelicWhereUniqueInput[] No
disconnect RelicWhereUniqueInput | RelicWhereUniqueInput[] No
delete RelicWhereUniqueInput | RelicWhereUniqueInput[] No
connect RelicWhereUniqueInput | RelicWhereUniqueInput[] No
update RelicUpdateWithWhereUniqueWithoutRealmHolderInput | RelicUpdateWithWhereUniqueWithoutRealmHolderInput[] No
updateMany RelicUpdateManyWithWhereWithoutRealmHolderInput | RelicUpdateManyWithWhereWithoutRealmHolderInput[] No
deleteMany RelicScalarWhereInput | RelicScalarWhereInput[] No

RealmTraitUpdateManyWithoutRealmNestedInput

Name Type Nullable
create RealmTraitCreateWithoutRealmInput | RealmTraitCreateWithoutRealmInput[] | RealmTraitUncheckedCreateWithoutRealmInput | RealmTraitUncheckedCreateWithoutRealmInput[] No
connectOrCreate RealmTraitCreateOrConnectWithoutRealmInput | RealmTraitCreateOrConnectWithoutRealmInput[] No
upsert RealmTraitUpsertWithWhereUniqueWithoutRealmInput | RealmTraitUpsertWithWhereUniqueWithoutRealmInput[] No
createMany RealmTraitCreateManyRealmInputEnvelope No
set RealmTraitWhereUniqueInput | RealmTraitWhereUniqueInput[] No
disconnect RealmTraitWhereUniqueInput | RealmTraitWhereUniqueInput[] No
delete RealmTraitWhereUniqueInput | RealmTraitWhereUniqueInput[] No
connect RealmTraitWhereUniqueInput | RealmTraitWhereUniqueInput[] No
update RealmTraitUpdateWithWhereUniqueWithoutRealmInput | RealmTraitUpdateWithWhereUniqueWithoutRealmInput[] No
updateMany RealmTraitUpdateManyWithWhereWithoutRealmInput | RealmTraitUpdateManyWithWhereWithoutRealmInput[] No
deleteMany RealmTraitScalarWhereInput | RealmTraitScalarWhereInput[] No

TroopUpdateManyWithoutRealmNestedInput

Name Type Nullable
create TroopCreateWithoutRealmInput | TroopCreateWithoutRealmInput[] | TroopUncheckedCreateWithoutRealmInput | TroopUncheckedCreateWithoutRealmInput[] No
connectOrCreate TroopCreateOrConnectWithoutRealmInput | TroopCreateOrConnectWithoutRealmInput[] No
upsert TroopUpsertWithWhereUniqueWithoutRealmInput | TroopUpsertWithWhereUniqueWithoutRealmInput[] No
createMany TroopCreateManyRealmInputEnvelope No
set TroopWhereUniqueInput | TroopWhereUniqueInput[] No
disconnect TroopWhereUniqueInput | TroopWhereUniqueInput[] No
delete TroopWhereUniqueInput | TroopWhereUniqueInput[] No
connect TroopWhereUniqueInput | TroopWhereUniqueInput[] No
update TroopUpdateWithWhereUniqueWithoutRealmInput | TroopUpdateWithWhereUniqueWithoutRealmInput[] No
updateMany TroopUpdateManyWithWhereWithoutRealmInput | TroopUpdateManyWithWhereWithoutRealmInput[] No
deleteMany TroopScalarWhereInput | TroopScalarWhereInput[] No

NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes

ArmyUpdateManyWithoutOwnRealmNestedInput

Name Type Nullable
create ArmyCreateWithoutOwnRealmInput | ArmyCreateWithoutOwnRealmInput[] | ArmyUncheckedCreateWithoutOwnRealmInput | ArmyUncheckedCreateWithoutOwnRealmInput[] No
connectOrCreate ArmyCreateOrConnectWithoutOwnRealmInput | ArmyCreateOrConnectWithoutOwnRealmInput[] No
upsert ArmyUpsertWithWhereUniqueWithoutOwnRealmInput | ArmyUpsertWithWhereUniqueWithoutOwnRealmInput[] No
createMany ArmyCreateManyOwnRealmInputEnvelope No
set ArmyWhereUniqueInput | ArmyWhereUniqueInput[] No
disconnect ArmyWhereUniqueInput | ArmyWhereUniqueInput[] No
delete ArmyWhereUniqueInput | ArmyWhereUniqueInput[] No
connect ArmyWhereUniqueInput | ArmyWhereUniqueInput[] No
update ArmyUpdateWithWhereUniqueWithoutOwnRealmInput | ArmyUpdateWithWhereUniqueWithoutOwnRealmInput[] No
updateMany ArmyUpdateManyWithWhereWithoutOwnRealmInput | ArmyUpdateManyWithWhereWithoutOwnRealmInput[] No
deleteMany ArmyScalarWhereInput | ArmyScalarWhereInput[] No

RelicUncheckedUpdateOneWithoutOriginRealmNestedInput

Name Type Nullable
create RelicCreateWithoutOriginRealmInput | RelicUncheckedCreateWithoutOriginRealmInput No
connectOrCreate RelicCreateOrConnectWithoutOriginRealmInput No
upsert RelicUpsertWithoutOriginRealmInput No
disconnect Boolean No
delete Boolean No
connect RelicWhereUniqueInput No
update RelicUpdateWithoutOriginRealmInput | RelicUncheckedUpdateWithoutOriginRealmInput No

BuildingUncheckedUpdateManyWithoutRealmNestedInput

Name Type Nullable
create BuildingCreateWithoutRealmInput | BuildingCreateWithoutRealmInput[] | BuildingUncheckedCreateWithoutRealmInput | BuildingUncheckedCreateWithoutRealmInput[] No
connectOrCreate BuildingCreateOrConnectWithoutRealmInput | BuildingCreateOrConnectWithoutRealmInput[] No
upsert BuildingUpsertWithWhereUniqueWithoutRealmInput | BuildingUpsertWithWhereUniqueWithoutRealmInput[] No
createMany BuildingCreateManyRealmInputEnvelope No
set BuildingWhereUniqueInput | BuildingWhereUniqueInput[] No
disconnect BuildingWhereUniqueInput | BuildingWhereUniqueInput[] No
delete BuildingWhereUniqueInput | BuildingWhereUniqueInput[] No
connect BuildingWhereUniqueInput | BuildingWhereUniqueInput[] No
update BuildingUpdateWithWhereUniqueWithoutRealmInput | BuildingUpdateWithWhereUniqueWithoutRealmInput[] No
updateMany BuildingUpdateManyWithWhereWithoutRealmInput | BuildingUpdateManyWithWhereWithoutRealmInput[] No
deleteMany BuildingScalarWhereInput | BuildingScalarWhereInput[] No

ResourceUncheckedUpdateManyWithoutRealmNestedInput

Name Type Nullable
create ResourceCreateWithoutRealmInput | ResourceCreateWithoutRealmInput[] | ResourceUncheckedCreateWithoutRealmInput | ResourceUncheckedCreateWithoutRealmInput[] No
connectOrCreate ResourceCreateOrConnectWithoutRealmInput | ResourceCreateOrConnectWithoutRealmInput[] No
upsert ResourceUpsertWithWhereUniqueWithoutRealmInput | ResourceUpsertWithWhereUniqueWithoutRealmInput[] No
createMany ResourceCreateManyRealmInputEnvelope No
set ResourceWhereUniqueInput | ResourceWhereUniqueInput[] No
disconnect ResourceWhereUniqueInput | ResourceWhereUniqueInput[] No
delete ResourceWhereUniqueInput | ResourceWhereUniqueInput[] No
connect ResourceWhereUniqueInput | ResourceWhereUniqueInput[] No
update ResourceUpdateWithWhereUniqueWithoutRealmInput | ResourceUpdateWithWhereUniqueWithoutRealmInput[] No
updateMany ResourceUpdateManyWithWhereWithoutRealmInput | ResourceUpdateManyWithWhereWithoutRealmInput[] No
deleteMany ResourceScalarWhereInput | ResourceScalarWhereInput[] No

RelicUncheckedUpdateManyWithoutRealmHolderNestedInput

Name Type Nullable
create RelicCreateWithoutRealmHolderInput | RelicCreateWithoutRealmHolderInput[] | RelicUncheckedCreateWithoutRealmHolderInput | RelicUncheckedCreateWithoutRealmHolderInput[] No
connectOrCreate RelicCreateOrConnectWithoutRealmHolderInput | RelicCreateOrConnectWithoutRealmHolderInput[] No
upsert RelicUpsertWithWhereUniqueWithoutRealmHolderInput | RelicUpsertWithWhereUniqueWithoutRealmHolderInput[] No
createMany RelicCreateManyRealmHolderInputEnvelope No
set RelicWhereUniqueInput | RelicWhereUniqueInput[] No
disconnect RelicWhereUniqueInput | RelicWhereUniqueInput[] No
delete RelicWhereUniqueInput | RelicWhereUniqueInput[] No
connect RelicWhereUniqueInput | RelicWhereUniqueInput[] No
update RelicUpdateWithWhereUniqueWithoutRealmHolderInput | RelicUpdateWithWhereUniqueWithoutRealmHolderInput[] No
updateMany RelicUpdateManyWithWhereWithoutRealmHolderInput | RelicUpdateManyWithWhereWithoutRealmHolderInput[] No
deleteMany RelicScalarWhereInput | RelicScalarWhereInput[] No

RealmTraitUncheckedUpdateManyWithoutRealmNestedInput

Name Type Nullable
create RealmTraitCreateWithoutRealmInput | RealmTraitCreateWithoutRealmInput[] | RealmTraitUncheckedCreateWithoutRealmInput | RealmTraitUncheckedCreateWithoutRealmInput[] No
connectOrCreate RealmTraitCreateOrConnectWithoutRealmInput | RealmTraitCreateOrConnectWithoutRealmInput[] No
upsert RealmTraitUpsertWithWhereUniqueWithoutRealmInput | RealmTraitUpsertWithWhereUniqueWithoutRealmInput[] No
createMany RealmTraitCreateManyRealmInputEnvelope No
set RealmTraitWhereUniqueInput | RealmTraitWhereUniqueInput[] No
disconnect RealmTraitWhereUniqueInput | RealmTraitWhereUniqueInput[] No
delete RealmTraitWhereUniqueInput | RealmTraitWhereUniqueInput[] No
connect RealmTraitWhereUniqueInput | RealmTraitWhereUniqueInput[] No
update RealmTraitUpdateWithWhereUniqueWithoutRealmInput | RealmTraitUpdateWithWhereUniqueWithoutRealmInput[] No
updateMany RealmTraitUpdateManyWithWhereWithoutRealmInput | RealmTraitUpdateManyWithWhereWithoutRealmInput[] No
deleteMany RealmTraitScalarWhereInput | RealmTraitScalarWhereInput[] No

TroopUncheckedUpdateManyWithoutRealmNestedInput

Name Type Nullable
create TroopCreateWithoutRealmInput | TroopCreateWithoutRealmInput[] | TroopUncheckedCreateWithoutRealmInput | TroopUncheckedCreateWithoutRealmInput[] No
connectOrCreate TroopCreateOrConnectWithoutRealmInput | TroopCreateOrConnectWithoutRealmInput[] No
upsert TroopUpsertWithWhereUniqueWithoutRealmInput | TroopUpsertWithWhereUniqueWithoutRealmInput[] No
createMany TroopCreateManyRealmInputEnvelope No
set TroopWhereUniqueInput | TroopWhereUniqueInput[] No
disconnect TroopWhereUniqueInput | TroopWhereUniqueInput[] No
delete TroopWhereUniqueInput | TroopWhereUniqueInput[] No
connect TroopWhereUniqueInput | TroopWhereUniqueInput[] No
update TroopUpdateWithWhereUniqueWithoutRealmInput | TroopUpdateWithWhereUniqueWithoutRealmInput[] No
updateMany TroopUpdateManyWithWhereWithoutRealmInput | TroopUpdateManyWithWhereWithoutRealmInput[] No
deleteMany TroopScalarWhereInput | TroopScalarWhereInput[] No

ArmyUncheckedUpdateManyWithoutOwnRealmNestedInput

Name Type Nullable
create ArmyCreateWithoutOwnRealmInput | ArmyCreateWithoutOwnRealmInput[] | ArmyUncheckedCreateWithoutOwnRealmInput | ArmyUncheckedCreateWithoutOwnRealmInput[] No
connectOrCreate ArmyCreateOrConnectWithoutOwnRealmInput | ArmyCreateOrConnectWithoutOwnRealmInput[] No
upsert ArmyUpsertWithWhereUniqueWithoutOwnRealmInput | ArmyUpsertWithWhereUniqueWithoutOwnRealmInput[] No
createMany ArmyCreateManyOwnRealmInputEnvelope No
set ArmyWhereUniqueInput | ArmyWhereUniqueInput[] No
disconnect ArmyWhereUniqueInput | ArmyWhereUniqueInput[] No
delete ArmyWhereUniqueInput | ArmyWhereUniqueInput[] No
connect ArmyWhereUniqueInput | ArmyWhereUniqueInput[] No
update ArmyUpdateWithWhereUniqueWithoutOwnRealmInput | ArmyUpdateWithWhereUniqueWithoutOwnRealmInput[] No
updateMany ArmyUpdateManyWithWhereWithoutOwnRealmInput | ArmyUpdateManyWithWhereWithoutOwnRealmInput[] No
deleteMany ArmyScalarWhereInput | ArmyScalarWhereInput[] No

RealmCreateNestedOneWithoutBuildingsInput

Name Type Nullable
create RealmCreateWithoutBuildingsInput | RealmUncheckedCreateWithoutBuildingsInput No
connectOrCreate RealmCreateOrConnectWithoutBuildingsInput No
connect RealmWhereUniqueInput No

BuildingCreatebuildsInput

Name Type Nullable
set String No

RealmUpdateOneWithoutBuildingsNestedInput

Name Type Nullable
create RealmCreateWithoutBuildingsInput | RealmUncheckedCreateWithoutBuildingsInput No
connectOrCreate RealmCreateOrConnectWithoutBuildingsInput No
upsert RealmUpsertWithoutBuildingsInput No
disconnect Boolean No
delete Boolean No
connect RealmWhereUniqueInput No
update RealmUpdateWithoutBuildingsInput | RealmUncheckedUpdateWithoutBuildingsInput No

BuildingUpdatebuildsInput

Name Type Nullable
set String No
push String | String No

NullableIntFieldUpdateOperationsInput

Name Type Nullable
set Int | Null Yes
increment Int No
decrement Int No
multiply Int No
divide Int No

DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No

RealmCreateNestedOneWithoutRelicInput

Name Type Nullable
create RealmCreateWithoutRelicInput | RealmUncheckedCreateWithoutRelicInput No
connectOrCreate RealmCreateOrConnectWithoutRelicInput No
connect RealmWhereUniqueInput No

RealmCreateNestedOneWithoutRelicsOwnedInput

Name Type Nullable
create RealmCreateWithoutRelicsOwnedInput | RealmUncheckedCreateWithoutRelicsOwnedInput No
connectOrCreate RealmCreateOrConnectWithoutRelicsOwnedInput No
connect RealmWhereUniqueInput No

RealmUpdateOneWithoutRelicNestedInput

Name Type Nullable
create RealmCreateWithoutRelicInput | RealmUncheckedCreateWithoutRelicInput No
connectOrCreate RealmCreateOrConnectWithoutRelicInput No
upsert RealmUpsertWithoutRelicInput No
disconnect Boolean No
delete Boolean No
connect RealmWhereUniqueInput No
update RealmUpdateWithoutRelicInput | RealmUncheckedUpdateWithoutRelicInput No

RealmUpdateOneWithoutRelicsOwnedNestedInput

Name Type Nullable
create RealmCreateWithoutRelicsOwnedInput | RealmUncheckedCreateWithoutRelicsOwnedInput No
connectOrCreate RealmCreateOrConnectWithoutRelicsOwnedInput No
upsert RealmUpsertWithoutRelicsOwnedInput No
disconnect Boolean No
delete Boolean No
connect RealmWhereUniqueInput No
update RealmUpdateWithoutRelicsOwnedInput | RealmUncheckedUpdateWithoutRelicsOwnedInput No

BoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean No

EnumRealmTraitTypeFieldUpdateOperationsInput

Name Type Nullable
set RealmTraitType No

RealmCreateNestedOneWithoutResourcesInput

Name Type Nullable
create RealmCreateWithoutResourcesInput | RealmUncheckedCreateWithoutResourcesInput No
connectOrCreate RealmCreateOrConnectWithoutResourcesInput No
connect RealmWhereUniqueInput No

LaborCreateNestedOneWithoutResoureInput

Name Type Nullable
create LaborCreateWithoutResoureInput | LaborUncheckedCreateWithoutResoureInput No
connectOrCreate LaborCreateOrConnectWithoutResoureInput No
connect LaborWhereUniqueInput No

ResourceCreateupgradesInput

Name Type Nullable
set String No

LaborUncheckedCreateNestedOneWithoutResoureInput

Name Type Nullable
create LaborCreateWithoutResoureInput | LaborUncheckedCreateWithoutResoureInput No
connectOrCreate LaborCreateOrConnectWithoutResoureInput No
connect LaborWhereUniqueInput No

RealmUpdateOneWithoutResourcesNestedInput

Name Type Nullable
create RealmCreateWithoutResourcesInput | RealmUncheckedCreateWithoutResourcesInput No
connectOrCreate RealmCreateOrConnectWithoutResourcesInput No
upsert RealmUpsertWithoutResourcesInput No
disconnect Boolean No
delete Boolean No
connect RealmWhereUniqueInput No
update RealmUpdateWithoutResourcesInput | RealmUncheckedUpdateWithoutResourcesInput No

LaborUpdateOneWithoutResoureNestedInput

Name Type Nullable
create LaborCreateWithoutResoureInput | LaborUncheckedCreateWithoutResoureInput No
connectOrCreate LaborCreateOrConnectWithoutResoureInput No
upsert LaborUpsertWithoutResoureInput No
disconnect Boolean No
delete Boolean No
connect LaborWhereUniqueInput No
update LaborUpdateWithoutResoureInput | LaborUncheckedUpdateWithoutResoureInput No

ResourceUpdateupgradesInput

Name Type Nullable
set String No
push String | String No

LaborUncheckedUpdateOneWithoutResoureNestedInput

Name Type Nullable
create LaborCreateWithoutResoureInput | LaborUncheckedCreateWithoutResoureInput No
connectOrCreate LaborCreateOrConnectWithoutResoureInput No
upsert LaborUpsertWithoutResoureInput No
disconnect Boolean No
delete Boolean No
connect LaborWhereUniqueInput No
update LaborUpdateWithoutResoureInput | LaborUncheckedUpdateWithoutResoureInput No

ResourceCreateNestedOneWithoutLaborInput

Name Type Nullable
create ResourceCreateWithoutLaborInput | ResourceUncheckedCreateWithoutLaborInput No
connectOrCreate ResourceCreateOrConnectWithoutLaborInput No
connect ResourceWhereUniqueInput No


RealmCreateNestedOneWithoutTraitsInput

Name Type Nullable
create RealmCreateWithoutTraitsInput | RealmUncheckedCreateWithoutTraitsInput No
connectOrCreate RealmCreateOrConnectWithoutTraitsInput No
connect RealmWhereUniqueInput No

RealmUpdateOneWithoutTraitsNestedInput

Name Type Nullable
create RealmCreateWithoutTraitsInput | RealmUncheckedCreateWithoutTraitsInput No
connectOrCreate RealmCreateOrConnectWithoutTraitsInput No
upsert RealmUpsertWithoutTraitsInput No
disconnect Boolean No
delete Boolean No
connect RealmWhereUniqueInput No
update RealmUpdateWithoutTraitsInput | RealmUncheckedUpdateWithoutTraitsInput No

RealmCreateNestedOneWithoutSquadInput

Name Type Nullable
create RealmCreateWithoutSquadInput | RealmUncheckedCreateWithoutSquadInput No
connectOrCreate RealmCreateOrConnectWithoutSquadInput No
connect RealmWhereUniqueInput No


EventCreateparametersInput

Name Type Nullable
set String No

EventCreatekeysInput

Name Type Nullable
set String No

EventUpdateparametersInput

Name Type Nullable
set String No
push String | String No

EventUpdatekeysInput

Name Type Nullable
set String No
push String | String No



LoreEntityRevisionUpdateManyWithoutEntityNestedInput

Name Type Nullable
create LoreEntityRevisionCreateWithoutEntityInput | LoreEntityRevisionCreateWithoutEntityInput[] | LoreEntityRevisionUncheckedCreateWithoutEntityInput | LoreEntityRevisionUncheckedCreateWithoutEntityInput[] No
connectOrCreate LoreEntityRevisionCreateOrConnectWithoutEntityInput | LoreEntityRevisionCreateOrConnectWithoutEntityInput[] No
upsert LoreEntityRevisionUpsertWithWhereUniqueWithoutEntityInput | LoreEntityRevisionUpsertWithWhereUniqueWithoutEntityInput[] No
createMany LoreEntityRevisionCreateManyEntityInputEnvelope No
set LoreEntityRevisionWhereUniqueInput | LoreEntityRevisionWhereUniqueInput[] No
disconnect LoreEntityRevisionWhereUniqueInput | LoreEntityRevisionWhereUniqueInput[] No
delete LoreEntityRevisionWhereUniqueInput | LoreEntityRevisionWhereUniqueInput[] No
connect LoreEntityRevisionWhereUniqueInput | LoreEntityRevisionWhereUniqueInput[] No
update LoreEntityRevisionUpdateWithWhereUniqueWithoutEntityInput | LoreEntityRevisionUpdateWithWhereUniqueWithoutEntityInput[] No
updateMany LoreEntityRevisionUpdateManyWithWhereWithoutEntityInput | LoreEntityRevisionUpdateManyWithWhereWithoutEntityInput[] No
deleteMany LoreEntityRevisionScalarWhereInput | LoreEntityRevisionScalarWhereInput[] No

LoreEntityRevisionUncheckedUpdateManyWithoutEntityNestedInput

Name Type Nullable
create LoreEntityRevisionCreateWithoutEntityInput | LoreEntityRevisionCreateWithoutEntityInput[] | LoreEntityRevisionUncheckedCreateWithoutEntityInput | LoreEntityRevisionUncheckedCreateWithoutEntityInput[] No
connectOrCreate LoreEntityRevisionCreateOrConnectWithoutEntityInput | LoreEntityRevisionCreateOrConnectWithoutEntityInput[] No
upsert LoreEntityRevisionUpsertWithWhereUniqueWithoutEntityInput | LoreEntityRevisionUpsertWithWhereUniqueWithoutEntityInput[] No
createMany LoreEntityRevisionCreateManyEntityInputEnvelope No
set LoreEntityRevisionWhereUniqueInput | LoreEntityRevisionWhereUniqueInput[] No
disconnect LoreEntityRevisionWhereUniqueInput | LoreEntityRevisionWhereUniqueInput[] No
delete LoreEntityRevisionWhereUniqueInput | LoreEntityRevisionWhereUniqueInput[] No
connect LoreEntityRevisionWhereUniqueInput | LoreEntityRevisionWhereUniqueInput[] No
update LoreEntityRevisionUpdateWithWhereUniqueWithoutEntityInput | LoreEntityRevisionUpdateWithWhereUniqueWithoutEntityInput[] No
updateMany LoreEntityRevisionUpdateManyWithWhereWithoutEntityInput | LoreEntityRevisionUpdateManyWithWhereWithoutEntityInput[] No
deleteMany LoreEntityRevisionScalarWhereInput | LoreEntityRevisionScalarWhereInput[] No

LoreEntityCreateNestedOneWithoutRevisionsInput

Name Type Nullable
create LoreEntityCreateWithoutRevisionsInput | LoreEntityUncheckedCreateWithoutRevisionsInput No
connectOrCreate LoreEntityCreateOrConnectWithoutRevisionsInput No
connect LoreEntityWhereUniqueInput No






LorePoisOnEntityRevisionsUpdateManyWithoutEntityRevisionNestedInput

Name Type Nullable
create LorePoisOnEntityRevisionsCreateWithoutEntityRevisionInput | LorePoisOnEntityRevisionsCreateWithoutEntityRevisionInput[] | LorePoisOnEntityRevisionsUncheckedCreateWithoutEntityRevisionInput | LorePoisOnEntityRevisionsUncheckedCreateWithoutEntityRevisionInput[] No
connectOrCreate LorePoisOnEntityRevisionsCreateOrConnectWithoutEntityRevisionInput | LorePoisOnEntityRevisionsCreateOrConnectWithoutEntityRevisionInput[] No
upsert LorePoisOnEntityRevisionsUpsertWithWhereUniqueWithoutEntityRevisionInput | LorePoisOnEntityRevisionsUpsertWithWhereUniqueWithoutEntityRevisionInput[] No
createMany LorePoisOnEntityRevisionsCreateManyEntityRevisionInputEnvelope No
set LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
disconnect LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
delete LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
connect LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
update LorePoisOnEntityRevisionsUpdateWithWhereUniqueWithoutEntityRevisionInput | LorePoisOnEntityRevisionsUpdateWithWhereUniqueWithoutEntityRevisionInput[] No
updateMany LorePoisOnEntityRevisionsUpdateManyWithWhereWithoutEntityRevisionInput | LorePoisOnEntityRevisionsUpdateManyWithWhereWithoutEntityRevisionInput[] No
deleteMany LorePoisOnEntityRevisionsScalarWhereInput | LorePoisOnEntityRevisionsScalarWhereInput[] No

LorePropsOnEntityRevisionsUpdateManyWithoutEntityRevisionNestedInput

Name Type Nullable
create LorePropsOnEntityRevisionsCreateWithoutEntityRevisionInput | LorePropsOnEntityRevisionsCreateWithoutEntityRevisionInput[] | LorePropsOnEntityRevisionsUncheckedCreateWithoutEntityRevisionInput | LorePropsOnEntityRevisionsUncheckedCreateWithoutEntityRevisionInput[] No
connectOrCreate LorePropsOnEntityRevisionsCreateOrConnectWithoutEntityRevisionInput | LorePropsOnEntityRevisionsCreateOrConnectWithoutEntityRevisionInput[] No
upsert LorePropsOnEntityRevisionsUpsertWithWhereUniqueWithoutEntityRevisionInput | LorePropsOnEntityRevisionsUpsertWithWhereUniqueWithoutEntityRevisionInput[] No
createMany LorePropsOnEntityRevisionsCreateManyEntityRevisionInputEnvelope No
set LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
disconnect LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
delete LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
connect LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
update LorePropsOnEntityRevisionsUpdateWithWhereUniqueWithoutEntityRevisionInput | LorePropsOnEntityRevisionsUpdateWithWhereUniqueWithoutEntityRevisionInput[] No
updateMany LorePropsOnEntityRevisionsUpdateManyWithWhereWithoutEntityRevisionInput | LorePropsOnEntityRevisionsUpdateManyWithWhereWithoutEntityRevisionInput[] No
deleteMany LorePropsOnEntityRevisionsScalarWhereInput | LorePropsOnEntityRevisionsScalarWhereInput[] No

LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutEntityRevisionNestedInput

Name Type Nullable
create LorePoisOnEntityRevisionsCreateWithoutEntityRevisionInput | LorePoisOnEntityRevisionsCreateWithoutEntityRevisionInput[] | LorePoisOnEntityRevisionsUncheckedCreateWithoutEntityRevisionInput | LorePoisOnEntityRevisionsUncheckedCreateWithoutEntityRevisionInput[] No
connectOrCreate LorePoisOnEntityRevisionsCreateOrConnectWithoutEntityRevisionInput | LorePoisOnEntityRevisionsCreateOrConnectWithoutEntityRevisionInput[] No
upsert LorePoisOnEntityRevisionsUpsertWithWhereUniqueWithoutEntityRevisionInput | LorePoisOnEntityRevisionsUpsertWithWhereUniqueWithoutEntityRevisionInput[] No
createMany LorePoisOnEntityRevisionsCreateManyEntityRevisionInputEnvelope No
set LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
disconnect LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
delete LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
connect LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
update LorePoisOnEntityRevisionsUpdateWithWhereUniqueWithoutEntityRevisionInput | LorePoisOnEntityRevisionsUpdateWithWhereUniqueWithoutEntityRevisionInput[] No
updateMany LorePoisOnEntityRevisionsUpdateManyWithWhereWithoutEntityRevisionInput | LorePoisOnEntityRevisionsUpdateManyWithWhereWithoutEntityRevisionInput[] No
deleteMany LorePoisOnEntityRevisionsScalarWhereInput | LorePoisOnEntityRevisionsScalarWhereInput[] No

LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutEntityRevisionNestedInput

Name Type Nullable
create LorePropsOnEntityRevisionsCreateWithoutEntityRevisionInput | LorePropsOnEntityRevisionsCreateWithoutEntityRevisionInput[] | LorePropsOnEntityRevisionsUncheckedCreateWithoutEntityRevisionInput | LorePropsOnEntityRevisionsUncheckedCreateWithoutEntityRevisionInput[] No
connectOrCreate LorePropsOnEntityRevisionsCreateOrConnectWithoutEntityRevisionInput | LorePropsOnEntityRevisionsCreateOrConnectWithoutEntityRevisionInput[] No
upsert LorePropsOnEntityRevisionsUpsertWithWhereUniqueWithoutEntityRevisionInput | LorePropsOnEntityRevisionsUpsertWithWhereUniqueWithoutEntityRevisionInput[] No
createMany LorePropsOnEntityRevisionsCreateManyEntityRevisionInputEnvelope No
set LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
disconnect LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
delete LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
connect LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
update LorePropsOnEntityRevisionsUpdateWithWhereUniqueWithoutEntityRevisionInput | LorePropsOnEntityRevisionsUpdateWithWhereUniqueWithoutEntityRevisionInput[] No
updateMany LorePropsOnEntityRevisionsUpdateManyWithWhereWithoutEntityRevisionInput | LorePropsOnEntityRevisionsUpdateManyWithWhereWithoutEntityRevisionInput[] No
deleteMany LorePropsOnEntityRevisionsScalarWhereInput | LorePropsOnEntityRevisionsScalarWhereInput[] No



LorePoisOnEntityRevisionsUpdateManyWithoutPoiNestedInput

Name Type Nullable
create LorePoisOnEntityRevisionsCreateWithoutPoiInput | LorePoisOnEntityRevisionsCreateWithoutPoiInput[] | LorePoisOnEntityRevisionsUncheckedCreateWithoutPoiInput | LorePoisOnEntityRevisionsUncheckedCreateWithoutPoiInput[] No
connectOrCreate LorePoisOnEntityRevisionsCreateOrConnectWithoutPoiInput | LorePoisOnEntityRevisionsCreateOrConnectWithoutPoiInput[] No
upsert LorePoisOnEntityRevisionsUpsertWithWhereUniqueWithoutPoiInput | LorePoisOnEntityRevisionsUpsertWithWhereUniqueWithoutPoiInput[] No
createMany LorePoisOnEntityRevisionsCreateManyPoiInputEnvelope No
set LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
disconnect LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
delete LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
connect LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
update LorePoisOnEntityRevisionsUpdateWithWhereUniqueWithoutPoiInput | LorePoisOnEntityRevisionsUpdateWithWhereUniqueWithoutPoiInput[] No
updateMany LorePoisOnEntityRevisionsUpdateManyWithWhereWithoutPoiInput | LorePoisOnEntityRevisionsUpdateManyWithWhereWithoutPoiInput[] No
deleteMany LorePoisOnEntityRevisionsScalarWhereInput | LorePoisOnEntityRevisionsScalarWhereInput[] No

LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutPoiNestedInput

Name Type Nullable
create LorePoisOnEntityRevisionsCreateWithoutPoiInput | LorePoisOnEntityRevisionsCreateWithoutPoiInput[] | LorePoisOnEntityRevisionsUncheckedCreateWithoutPoiInput | LorePoisOnEntityRevisionsUncheckedCreateWithoutPoiInput[] No
connectOrCreate LorePoisOnEntityRevisionsCreateOrConnectWithoutPoiInput | LorePoisOnEntityRevisionsCreateOrConnectWithoutPoiInput[] No
upsert LorePoisOnEntityRevisionsUpsertWithWhereUniqueWithoutPoiInput | LorePoisOnEntityRevisionsUpsertWithWhereUniqueWithoutPoiInput[] No
createMany LorePoisOnEntityRevisionsCreateManyPoiInputEnvelope No
set LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
disconnect LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
delete LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
connect LorePoisOnEntityRevisionsWhereUniqueInput | LorePoisOnEntityRevisionsWhereUniqueInput[] No
update LorePoisOnEntityRevisionsUpdateWithWhereUniqueWithoutPoiInput | LorePoisOnEntityRevisionsUpdateWithWhereUniqueWithoutPoiInput[] No
updateMany LorePoisOnEntityRevisionsUpdateManyWithWhereWithoutPoiInput | LorePoisOnEntityRevisionsUpdateManyWithWhereWithoutPoiInput[] No
deleteMany LorePoisOnEntityRevisionsScalarWhereInput | LorePoisOnEntityRevisionsScalarWhereInput[] No



LorePropsOnEntityRevisionsUpdateManyWithoutPropNestedInput

Name Type Nullable
create LorePropsOnEntityRevisionsCreateWithoutPropInput | LorePropsOnEntityRevisionsCreateWithoutPropInput[] | LorePropsOnEntityRevisionsUncheckedCreateWithoutPropInput | LorePropsOnEntityRevisionsUncheckedCreateWithoutPropInput[] No
connectOrCreate LorePropsOnEntityRevisionsCreateOrConnectWithoutPropInput | LorePropsOnEntityRevisionsCreateOrConnectWithoutPropInput[] No
upsert LorePropsOnEntityRevisionsUpsertWithWhereUniqueWithoutPropInput | LorePropsOnEntityRevisionsUpsertWithWhereUniqueWithoutPropInput[] No
createMany LorePropsOnEntityRevisionsCreateManyPropInputEnvelope No
set LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
disconnect LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
delete LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
connect LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
update LorePropsOnEntityRevisionsUpdateWithWhereUniqueWithoutPropInput | LorePropsOnEntityRevisionsUpdateWithWhereUniqueWithoutPropInput[] No
updateMany LorePropsOnEntityRevisionsUpdateManyWithWhereWithoutPropInput | LorePropsOnEntityRevisionsUpdateManyWithWhereWithoutPropInput[] No
deleteMany LorePropsOnEntityRevisionsScalarWhereInput | LorePropsOnEntityRevisionsScalarWhereInput[] No

LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutPropNestedInput

Name Type Nullable
create LorePropsOnEntityRevisionsCreateWithoutPropInput | LorePropsOnEntityRevisionsCreateWithoutPropInput[] | LorePropsOnEntityRevisionsUncheckedCreateWithoutPropInput | LorePropsOnEntityRevisionsUncheckedCreateWithoutPropInput[] No
connectOrCreate LorePropsOnEntityRevisionsCreateOrConnectWithoutPropInput | LorePropsOnEntityRevisionsCreateOrConnectWithoutPropInput[] No
upsert LorePropsOnEntityRevisionsUpsertWithWhereUniqueWithoutPropInput | LorePropsOnEntityRevisionsUpsertWithWhereUniqueWithoutPropInput[] No
createMany LorePropsOnEntityRevisionsCreateManyPropInputEnvelope No
set LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
disconnect LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
delete LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
connect LorePropsOnEntityRevisionsWhereUniqueInput | LorePropsOnEntityRevisionsWhereUniqueInput[] No
update LorePropsOnEntityRevisionsUpdateWithWhereUniqueWithoutPropInput | LorePropsOnEntityRevisionsUpdateWithWhereUniqueWithoutPropInput[] No
updateMany LorePropsOnEntityRevisionsUpdateManyWithWhereWithoutPropInput | LorePropsOnEntityRevisionsUpdateManyWithWhereWithoutPropInput[] No
deleteMany LorePropsOnEntityRevisionsScalarWhereInput | LorePropsOnEntityRevisionsScalarWhereInput[] No

LoreEntityRevisionCreateNestedOneWithoutPoisInput

Name Type Nullable
create LoreEntityRevisionCreateWithoutPoisInput | LoreEntityRevisionUncheckedCreateWithoutPoisInput No
connectOrCreate LoreEntityRevisionCreateOrConnectWithoutPoisInput No
connect LoreEntityRevisionWhereUniqueInput No

LorePOICreateNestedOneWithoutEntitiesInput

Name Type Nullable
create LorePOICreateWithoutEntitiesInput | LorePOIUncheckedCreateWithoutEntitiesInput No
connectOrCreate LorePOICreateOrConnectWithoutEntitiesInput No
connect LorePOIWhereUniqueInput No



LoreEntityRevisionCreateNestedOneWithoutPropsInput

Name Type Nullable
create LoreEntityRevisionCreateWithoutPropsInput | LoreEntityRevisionUncheckedCreateWithoutPropsInput No
connectOrCreate LoreEntityRevisionCreateOrConnectWithoutPropsInput No
connect LoreEntityRevisionWhereUniqueInput No

LorePropCreateNestedOneWithoutEntitiesInput

Name Type Nullable
create LorePropCreateWithoutEntitiesInput | LorePropUncheckedCreateWithoutEntitiesInput No
connectOrCreate LorePropCreateOrConnectWithoutEntitiesInput No
connect LorePropWhereUniqueInput No



DecimalFieldUpdateOperationsInput

Name Type Nullable
set Decimal No
increment Decimal No
decrement Decimal No
multiply Decimal No
divide Decimal No

RealmCreateNestedOneWithoutOwnArmiesInput

Name Type Nullable
create RealmCreateWithoutOwnArmiesInput | RealmUncheckedCreateWithoutOwnArmiesInput No
connectOrCreate RealmCreateOrConnectWithoutOwnArmiesInput No
connect RealmWhereUniqueInput No


EnumExchangeEventTypeFieldUpdateOperationsInput

Name Type Nullable
set ExchangeEventType No

NestedIntFilter

Name Type Nullable
equals Int No
in Int No
notIn Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntFilter No

NestedStringFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringFilter No

NestedIntWithAggregatesFilter

Name Type Nullable
equals Int No
in Int No
notIn Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

NestedFloatFilter

Name Type Nullable
equals Float No
in Float No
notIn Float No
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatFilter No

NestedStringWithAggregatesFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedStringNullableFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableFilter | Null Yes

NestedEnumOrderTypeNullableFilter

Name Type Nullable
equals OrderType | Null Yes
in OrderType[] | Null Yes
notIn OrderType[] | Null Yes
not OrderType | NestedEnumOrderTypeNullableFilter | Null Yes

NestedDateTimeNullableFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableFilter | Null Yes

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedIntNullableFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableFilter | Null Yes

NestedFloatWithAggregatesFilter

Name Type Nullable
equals Float No
in Float No
notIn Float No
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedFloatFilter No
_min NestedFloatFilter No
_max NestedFloatFilter No

NestedEnumOrderTypeNullableWithAggregatesFilter

Name Type Nullable
equals OrderType | Null Yes
in OrderType[] | Null Yes
notIn OrderType[] | Null Yes
not OrderType | NestedEnumOrderTypeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumOrderTypeNullableFilter No
_max NestedEnumOrderTypeNullableFilter No

NestedDateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

NestedIntNullableWithAggregatesFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

NestedFloatNullableFilter

Name Type Nullable
equals Float | Null Yes
in Float | Null Yes
notIn Float | Null Yes
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatNullableFilter | Null Yes

NestedDateTimeFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeFilter No

NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

NestedBoolFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolFilter No

NestedBoolWithAggregatesFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

NestedEnumRealmTraitTypeFilter

Name Type Nullable
equals RealmTraitType No
in RealmTraitType[] No
notIn RealmTraitType[] No
not RealmTraitType | NestedEnumRealmTraitTypeFilter No

NestedEnumRealmTraitTypeWithAggregatesFilter

Name Type Nullable
equals RealmTraitType No
in RealmTraitType[] No
notIn RealmTraitType[] No
not RealmTraitType | NestedEnumRealmTraitTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumRealmTraitTypeFilter No
_max NestedEnumRealmTraitTypeFilter No

NestedJsonFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No

NestedDecimalFilter

Name Type Nullable
equals Decimal No
in Decimal[] No
notIn Decimal[] No
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalFilter No

NestedDecimalWithAggregatesFilter

Name Type Nullable
equals Decimal No
in Decimal[] No
notIn Decimal[] No
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedDecimalFilter No
_sum NestedDecimalFilter No
_min NestedDecimalFilter No
_max NestedDecimalFilter No

NestedEnumExchangeEventTypeFilter

Name Type Nullable
equals ExchangeEventType No
in ExchangeEventType[] No
notIn ExchangeEventType[] No
not ExchangeEventType | NestedEnumExchangeEventTypeFilter No

NestedEnumExchangeEventTypeWithAggregatesFilter

Name Type Nullable
equals ExchangeEventType No
in ExchangeEventType[] No
notIn ExchangeEventType[] No
not ExchangeEventType | NestedEnumExchangeEventTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumExchangeEventTypeFilter No
_max NestedEnumExchangeEventTypeFilter No

RealmCreateWithoutWalletInput

Name Type Nullable
realmId Int No
name String | Null Yes
bridgedOwner String | Null Yes
walletL2 WalletCreateNestedOneWithoutRealmsL2Input No
walletSettled WalletCreateNestedOneWithoutRealmsSettledInput No
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingCreateNestedManyWithoutRealmInput No
resources ResourceCreateNestedManyWithoutRealmInput No
relicsOwned RelicCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitCreateNestedManyWithoutRealmInput No
squad TroopCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyCreateNestedManyWithoutOwnRealmInput No

RealmUncheckedCreateWithoutWalletInput

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
bridgedOwner String | Null Yes
ownerL2 String | Null Yes
settledOwner String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicUncheckedCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingUncheckedCreateNestedManyWithoutRealmInput No
resources ResourceUncheckedCreateNestedManyWithoutRealmInput No
relicsOwned RelicUncheckedCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitUncheckedCreateNestedManyWithoutRealmInput No
squad TroopUncheckedCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyUncheckedCreateNestedManyWithoutOwnRealmInput No

RealmCreateOrConnectWithoutWalletInput

Name Type Nullable
where RealmWhereUniqueInput No
create RealmCreateWithoutWalletInput | RealmUncheckedCreateWithoutWalletInput No

RealmCreateManyWalletInputEnvelope

Name Type Nullable
data RealmCreateManyWalletInput[] No
skipDuplicates Boolean No

RealmCreateWithoutWalletL2Input

Name Type Nullable
realmId Int No
name String | Null Yes
wallet WalletCreateNestedOneWithoutRealmsL1Input No
bridgedOwner String | Null Yes
walletSettled WalletCreateNestedOneWithoutRealmsSettledInput No
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingCreateNestedManyWithoutRealmInput No
resources ResourceCreateNestedManyWithoutRealmInput No
relicsOwned RelicCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitCreateNestedManyWithoutRealmInput No
squad TroopCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyCreateNestedManyWithoutOwnRealmInput No

RealmUncheckedCreateWithoutWalletL2Input

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
owner String | Null Yes
bridgedOwner String | Null Yes
settledOwner String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicUncheckedCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingUncheckedCreateNestedManyWithoutRealmInput No
resources ResourceUncheckedCreateNestedManyWithoutRealmInput No
relicsOwned RelicUncheckedCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitUncheckedCreateNestedManyWithoutRealmInput No
squad TroopUncheckedCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyUncheckedCreateNestedManyWithoutOwnRealmInput No

RealmCreateOrConnectWithoutWalletL2Input

Name Type Nullable
where RealmWhereUniqueInput No
create RealmCreateWithoutWalletL2Input | RealmUncheckedCreateWithoutWalletL2Input No

RealmCreateManyWalletL2InputEnvelope

Name Type Nullable
data RealmCreateManyWalletL2Input[] No
skipDuplicates Boolean No

RealmCreateWithoutWalletSettledInput

Name Type Nullable
realmId Int No
name String | Null Yes
wallet WalletCreateNestedOneWithoutRealmsL1Input No
bridgedOwner String | Null Yes
walletL2 WalletCreateNestedOneWithoutRealmsL2Input No
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingCreateNestedManyWithoutRealmInput No
resources ResourceCreateNestedManyWithoutRealmInput No
relicsOwned RelicCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitCreateNestedManyWithoutRealmInput No
squad TroopCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyCreateNestedManyWithoutOwnRealmInput No

RealmUncheckedCreateWithoutWalletSettledInput

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
owner String | Null Yes
bridgedOwner String | Null Yes
ownerL2 String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicUncheckedCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingUncheckedCreateNestedManyWithoutRealmInput No
resources ResourceUncheckedCreateNestedManyWithoutRealmInput No
relicsOwned RelicUncheckedCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitUncheckedCreateNestedManyWithoutRealmInput No
squad TroopUncheckedCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyUncheckedCreateNestedManyWithoutOwnRealmInput No

RealmCreateOrConnectWithoutWalletSettledInput

Name Type Nullable
where RealmWhereUniqueInput No
create RealmCreateWithoutWalletSettledInput | RealmUncheckedCreateWithoutWalletSettledInput No

RealmCreateManyWalletSettledInputEnvelope

Name Type Nullable
data RealmCreateManyWalletSettledInput[] No
skipDuplicates Boolean No


RealmUpdateWithWhereUniqueWithoutWalletInput

Name Type Nullable
where RealmWhereUniqueInput No
data RealmUpdateWithoutWalletInput | RealmUncheckedUpdateWithoutWalletInput No

RealmUpdateManyWithWhereWithoutWalletInput

Name Type Nullable
where RealmScalarWhereInput No
data RealmUpdateManyMutationInput | RealmUncheckedUpdateManyWithoutRealmsL1Input No

RealmScalarWhereInput

Name Type Nullable
AND RealmScalarWhereInput | RealmScalarWhereInput[] No
OR RealmScalarWhereInput[] No
NOT RealmScalarWhereInput | RealmScalarWhereInput[] No
id IntFilter | Int No
realmId IntFilter | Int No
name StringNullableFilter | String | Null Yes
owner StringNullableFilter | String | Null Yes
bridgedOwner StringNullableFilter | String | Null Yes
ownerL2 StringNullableFilter | String | Null Yes
settledOwner StringNullableFilter | String | Null Yes
wonder StringNullableFilter | String | Null Yes
rarityRank IntFilter | Int No
rarityScore FloatFilter | Float No
imageUrl StringFilter | String No
orderType EnumOrderTypeNullableFilter | OrderType | Null Yes
lastAttacked DateTimeNullableFilter | DateTime | Null Yes
lastClaimTime DateTimeNullableFilter | DateTime | Null Yes
lastTick DateTimeNullableFilter | DateTime | Null Yes
lastVaultTime DateTimeNullableFilter | DateTime | Null Yes
longitude FloatFilter | Float No
latitude FloatFilter | Float No


RealmUpdateWithWhereUniqueWithoutWalletL2Input

Name Type Nullable
where RealmWhereUniqueInput No
data RealmUpdateWithoutWalletL2Input | RealmUncheckedUpdateWithoutWalletL2Input No

RealmUpdateManyWithWhereWithoutWalletL2Input

Name Type Nullable
where RealmScalarWhereInput No
data RealmUpdateManyMutationInput | RealmUncheckedUpdateManyWithoutRealmsL2Input No


RealmUpdateWithWhereUniqueWithoutWalletSettledInput

Name Type Nullable
where RealmWhereUniqueInput No
data RealmUpdateWithoutWalletSettledInput | RealmUncheckedUpdateWithoutWalletSettledInput No

RealmUpdateManyWithWhereWithoutWalletSettledInput

Name Type Nullable
where RealmScalarWhereInput No
data RealmUpdateManyMutationInput | RealmUncheckedUpdateManyWithoutRealmsSettledInput No

WalletCreateWithoutRealmsL1Input

Name Type Nullable
address String No
realmsL2 RealmCreateNestedManyWithoutWalletL2Input No
realmsSettled RealmCreateNestedManyWithoutWalletSettledInput No

WalletUncheckedCreateWithoutRealmsL1Input

Name Type Nullable
id Int No
address String No
realmsL2 RealmUncheckedCreateNestedManyWithoutWalletL2Input No
realmsSettled RealmUncheckedCreateNestedManyWithoutWalletSettledInput No

WalletCreateOrConnectWithoutRealmsL1Input

Name Type Nullable
where WalletWhereUniqueInput No
create WalletCreateWithoutRealmsL1Input | WalletUncheckedCreateWithoutRealmsL1Input No

WalletCreateWithoutRealmsL2Input

Name Type Nullable
address String No
realmsL1 RealmCreateNestedManyWithoutWalletInput No
realmsSettled RealmCreateNestedManyWithoutWalletSettledInput No

WalletUncheckedCreateWithoutRealmsL2Input

Name Type Nullable
id Int No
address String No
realmsL1 RealmUncheckedCreateNestedManyWithoutWalletInput No
realmsSettled RealmUncheckedCreateNestedManyWithoutWalletSettledInput No

WalletCreateOrConnectWithoutRealmsL2Input

Name Type Nullable
where WalletWhereUniqueInput No
create WalletCreateWithoutRealmsL2Input | WalletUncheckedCreateWithoutRealmsL2Input No

WalletCreateWithoutRealmsSettledInput

Name Type Nullable
address String No
realmsL1 RealmCreateNestedManyWithoutWalletInput No
realmsL2 RealmCreateNestedManyWithoutWalletL2Input No

WalletUncheckedCreateWithoutRealmsSettledInput

Name Type Nullable
id Int No
address String No
realmsL1 RealmUncheckedCreateNestedManyWithoutWalletInput No
realmsL2 RealmUncheckedCreateNestedManyWithoutWalletL2Input No

WalletCreateOrConnectWithoutRealmsSettledInput

Name Type Nullable
where WalletWhereUniqueInput No
create WalletCreateWithoutRealmsSettledInput | WalletUncheckedCreateWithoutRealmsSettledInput No

RelicCreateWithoutOriginRealmInput

Name Type Nullable
realmHolder RealmCreateNestedOneWithoutRelicsOwnedInput No
isAnnexed Boolean No

RelicUncheckedCreateWithoutOriginRealmInput

Name Type Nullable
heldByRealm Int No
isAnnexed Boolean No

RelicCreateOrConnectWithoutOriginRealmInput

Name Type Nullable
where RelicWhereUniqueInput No
create RelicCreateWithoutOriginRealmInput | RelicUncheckedCreateWithoutOriginRealmInput No

BuildingCreateWithoutRealmInput

Name Type Nullable
buildingId Int No
eventId String No
buildingIntegrity Int No
builds BuildingCreatebuildsInput | String No

BuildingUncheckedCreateWithoutRealmInput

Name Type Nullable
id Int No
buildingId Int No
eventId String No
buildingIntegrity Int No
builds BuildingCreatebuildsInput | String No

BuildingCreateOrConnectWithoutRealmInput

Name Type Nullable
where BuildingWhereUniqueInput No
create BuildingCreateWithoutRealmInput | BuildingUncheckedCreateWithoutRealmInput No

BuildingCreateManyRealmInputEnvelope

Name Type Nullable
data BuildingCreateManyRealmInput[] No
skipDuplicates Boolean No

ResourceCreateWithoutRealmInput

Name Type Nullable
resourceId Int No
labor LaborCreateNestedOneWithoutResoureInput No
level Int No
upgrades ResourceCreateupgradesInput | String No

ResourceUncheckedCreateWithoutRealmInput

Name Type Nullable
id Int No
resourceId Int No
labor LaborUncheckedCreateNestedOneWithoutResoureInput No
level Int No
upgrades ResourceCreateupgradesInput | String No

ResourceCreateOrConnectWithoutRealmInput

Name Type Nullable
where ResourceWhereUniqueInput No
create ResourceCreateWithoutRealmInput | ResourceUncheckedCreateWithoutRealmInput No

ResourceCreateManyRealmInputEnvelope

Name Type Nullable
data ResourceCreateManyRealmInput[] No
skipDuplicates Boolean No

RelicCreateWithoutRealmHolderInput

Name Type Nullable
originRealm RealmCreateNestedOneWithoutRelicInput No
isAnnexed Boolean No

RelicUncheckedCreateWithoutRealmHolderInput

Name Type Nullable
realmId Int No
isAnnexed Boolean No

RelicCreateOrConnectWithoutRealmHolderInput

Name Type Nullable
where RelicWhereUniqueInput No
create RelicCreateWithoutRealmHolderInput | RelicUncheckedCreateWithoutRealmHolderInput No

RelicCreateManyRealmHolderInputEnvelope

Name Type Nullable
data RelicCreateManyRealmHolderInput[] No
skipDuplicates Boolean No

RealmTraitCreateWithoutRealmInput

Name Type Nullable
type RealmTraitType No
qty Int No

RealmTraitUncheckedCreateWithoutRealmInput

Name Type Nullable
type RealmTraitType No
qty Int No

RealmTraitCreateOrConnectWithoutRealmInput

Name Type Nullable
where RealmTraitWhereUniqueInput No
create RealmTraitCreateWithoutRealmInput | RealmTraitUncheckedCreateWithoutRealmInput No

RealmTraitCreateManyRealmInputEnvelope

Name Type Nullable
data RealmTraitCreateManyRealmInput[] No
skipDuplicates Boolean No

TroopCreateWithoutRealmInput

Name Type Nullable
troopId Int No
index Int No
type Int No
tier Int No
building Int No
agility Int No
attack Int No
armor Int No
vitality Int No
wisdom Int No
squadSlot Int No
timestamp DateTime | Null Yes

TroopUncheckedCreateWithoutRealmInput

Name Type Nullable
troopId Int No
index Int No
type Int No
tier Int No
building Int No
agility Int No
attack Int No
armor Int No
vitality Int No
wisdom Int No
squadSlot Int No
timestamp DateTime | Null Yes

TroopCreateOrConnectWithoutRealmInput

Name Type Nullable
where TroopWhereUniqueInput No
create TroopCreateWithoutRealmInput | TroopUncheckedCreateWithoutRealmInput No

TroopCreateManyRealmInputEnvelope

Name Type Nullable
data TroopCreateManyRealmInput[] No
skipDuplicates Boolean No

ArmyCreateWithoutOwnRealmInput

Name Type Nullable
armyId Int No
orderId Int No
destinationRealmId Int No
destinationArrivalTime DateTime | Null Yes
armyPacked Int No
lastAttacked DateTime | Null Yes
xp Int No
level Int No
callSign Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No
bastionId Int No
bastionPastLocation Int No
bastionCurrentLocation Int No
bastionArrivalBlock Int No

ArmyUncheckedCreateWithoutOwnRealmInput

Name Type Nullable
armyId Int No
orderId Int No
destinationRealmId Int No
destinationArrivalTime DateTime | Null Yes
armyPacked Int No
lastAttacked DateTime | Null Yes
xp Int No
level Int No
callSign Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No
bastionId Int No
bastionPastLocation Int No
bastionCurrentLocation Int No
bastionArrivalBlock Int No

ArmyCreateOrConnectWithoutOwnRealmInput

Name Type Nullable
where ArmyWhereUniqueInput No
create ArmyCreateWithoutOwnRealmInput | ArmyUncheckedCreateWithoutOwnRealmInput No

ArmyCreateManyOwnRealmInputEnvelope

Name Type Nullable
data ArmyCreateManyOwnRealmInput[] No
skipDuplicates Boolean No


WalletUpdateWithoutRealmsL1Input

Name Type Nullable
address String | StringFieldUpdateOperationsInput No
realmsL2 RealmUpdateManyWithoutWalletL2NestedInput No
realmsSettled RealmUpdateManyWithoutWalletSettledNestedInput No

WalletUncheckedUpdateWithoutRealmsL1Input

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
address String | StringFieldUpdateOperationsInput No
realmsL2 RealmUncheckedUpdateManyWithoutWalletL2NestedInput No
realmsSettled RealmUncheckedUpdateManyWithoutWalletSettledNestedInput No


WalletUpdateWithoutRealmsL2Input

Name Type Nullable
address String | StringFieldUpdateOperationsInput No
realmsL1 RealmUpdateManyWithoutWalletNestedInput No
realmsSettled RealmUpdateManyWithoutWalletSettledNestedInput No

WalletUncheckedUpdateWithoutRealmsL2Input

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
address String | StringFieldUpdateOperationsInput No
realmsL1 RealmUncheckedUpdateManyWithoutWalletNestedInput No
realmsSettled RealmUncheckedUpdateManyWithoutWalletSettledNestedInput No


WalletUpdateWithoutRealmsSettledInput

Name Type Nullable
address String | StringFieldUpdateOperationsInput No
realmsL1 RealmUpdateManyWithoutWalletNestedInput No
realmsL2 RealmUpdateManyWithoutWalletL2NestedInput No

WalletUncheckedUpdateWithoutRealmsSettledInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
address String | StringFieldUpdateOperationsInput No
realmsL1 RealmUncheckedUpdateManyWithoutWalletNestedInput No
realmsL2 RealmUncheckedUpdateManyWithoutWalletL2NestedInput No


RelicUpdateWithoutOriginRealmInput

Name Type Nullable
realmHolder RealmUpdateOneWithoutRelicsOwnedNestedInput No
isAnnexed Boolean | BoolFieldUpdateOperationsInput No

RelicUncheckedUpdateWithoutOriginRealmInput

Name Type Nullable
heldByRealm Int | IntFieldUpdateOperationsInput No
isAnnexed Boolean | BoolFieldUpdateOperationsInput No


BuildingUpdateWithWhereUniqueWithoutRealmInput

Name Type Nullable
where BuildingWhereUniqueInput No
data BuildingUpdateWithoutRealmInput | BuildingUncheckedUpdateWithoutRealmInput No

BuildingUpdateManyWithWhereWithoutRealmInput

Name Type Nullable
where BuildingScalarWhereInput No
data BuildingUpdateManyMutationInput | BuildingUncheckedUpdateManyWithoutBuildingsInput No

BuildingScalarWhereInput

Name Type Nullable
AND BuildingScalarWhereInput | BuildingScalarWhereInput[] No
OR BuildingScalarWhereInput[] No
NOT BuildingScalarWhereInput | BuildingScalarWhereInput[] No
id IntFilter | Int No
buildingId IntFilter | Int No
realmId IntNullableFilter | Int | Null Yes
eventId StringFilter | String No
buildingIntegrity IntFilter | Int No
builds StringNullableListFilter No


ResourceUpdateWithWhereUniqueWithoutRealmInput

Name Type Nullable
where ResourceWhereUniqueInput No
data ResourceUpdateWithoutRealmInput | ResourceUncheckedUpdateWithoutRealmInput No

ResourceUpdateManyWithWhereWithoutRealmInput

Name Type Nullable
where ResourceScalarWhereInput No
data ResourceUpdateManyMutationInput | ResourceUncheckedUpdateManyWithoutResourcesInput No

ResourceScalarWhereInput

Name Type Nullable
AND ResourceScalarWhereInput | ResourceScalarWhereInput[] No
OR ResourceScalarWhereInput[] No
NOT ResourceScalarWhereInput | ResourceScalarWhereInput[] No
id IntFilter | Int No
resourceId IntFilter | Int No
realmId IntNullableFilter | Int | Null Yes
level IntFilter | Int No
upgrades StringNullableListFilter No


RelicUpdateWithWhereUniqueWithoutRealmHolderInput

Name Type Nullable
where RelicWhereUniqueInput No
data RelicUpdateWithoutRealmHolderInput | RelicUncheckedUpdateWithoutRealmHolderInput No

RelicUpdateManyWithWhereWithoutRealmHolderInput

Name Type Nullable
where RelicScalarWhereInput No
data RelicUpdateManyMutationInput | RelicUncheckedUpdateManyWithoutRelicsOwnedInput No

RelicScalarWhereInput

Name Type Nullable
AND RelicScalarWhereInput | RelicScalarWhereInput[] No
OR RelicScalarWhereInput[] No
NOT RelicScalarWhereInput | RelicScalarWhereInput[] No
realmId IntFilter | Int No
heldByRealm IntFilter | Int No
isAnnexed BoolFilter | Boolean No


RealmTraitUpdateWithWhereUniqueWithoutRealmInput

Name Type Nullable
where RealmTraitWhereUniqueInput No
data RealmTraitUpdateWithoutRealmInput | RealmTraitUncheckedUpdateWithoutRealmInput No

RealmTraitUpdateManyWithWhereWithoutRealmInput

Name Type Nullable
where RealmTraitScalarWhereInput No
data RealmTraitUpdateManyMutationInput | RealmTraitUncheckedUpdateManyWithoutTraitsInput No


TroopUpsertWithWhereUniqueWithoutRealmInput

Name Type Nullable
where TroopWhereUniqueInput No
update TroopUpdateWithoutRealmInput | TroopUncheckedUpdateWithoutRealmInput No
create TroopCreateWithoutRealmInput | TroopUncheckedCreateWithoutRealmInput No

TroopUpdateWithWhereUniqueWithoutRealmInput

Name Type Nullable
where TroopWhereUniqueInput No
data TroopUpdateWithoutRealmInput | TroopUncheckedUpdateWithoutRealmInput No

TroopUpdateManyWithWhereWithoutRealmInput

Name Type Nullable
where TroopScalarWhereInput No
data TroopUpdateManyMutationInput | TroopUncheckedUpdateManyWithoutSquadInput No

TroopScalarWhereInput

Name Type Nullable
AND TroopScalarWhereInput | TroopScalarWhereInput[] No
OR TroopScalarWhereInput[] No
NOT TroopScalarWhereInput | TroopScalarWhereInput[] No
realmId IntFilter | Int No
troopId IntFilter | Int No
index IntFilter | Int No
type IntFilter | Int No
tier IntFilter | Int No
building IntFilter | Int No
agility IntFilter | Int No
attack IntFilter | Int No
armor IntFilter | Int No
vitality IntFilter | Int No
wisdom IntFilter | Int No
squadSlot IntFilter | Int No
timestamp DateTimeNullableFilter | DateTime | Null Yes


ArmyUpdateWithWhereUniqueWithoutOwnRealmInput

Name Type Nullable
where ArmyWhereUniqueInput No
data ArmyUpdateWithoutOwnRealmInput | ArmyUncheckedUpdateWithoutOwnRealmInput No

ArmyUpdateManyWithWhereWithoutOwnRealmInput

Name Type Nullable
where ArmyScalarWhereInput No
data ArmyUpdateManyMutationInput | ArmyUncheckedUpdateManyWithoutOwnArmiesInput No

ArmyScalarWhereInput

Name Type Nullable
AND ArmyScalarWhereInput | ArmyScalarWhereInput[] No
OR ArmyScalarWhereInput[] No
NOT ArmyScalarWhereInput | ArmyScalarWhereInput[] No
realmId IntFilter | Int No
armyId IntFilter | Int No
orderId IntFilter | Int No
destinationRealmId IntFilter | Int No
destinationArrivalTime DateTimeNullableFilter | DateTime | Null Yes
armyPacked IntFilter | Int No
lastAttacked DateTimeNullableFilter | DateTime | Null Yes
xp IntFilter | Int No
level IntFilter | Int No
callSign IntFilter | Int No
lightCavalryQty IntFilter | Int No
lightCavalryHealth IntFilter | Int No
heavyCavalryQty IntFilter | Int No
heavyCavalryHealth IntFilter | Int No
archerQty IntFilter | Int No
archerHealth IntFilter | Int No
longbowQty IntFilter | Int No
longbowHealth IntFilter | Int No
mageQty IntFilter | Int No
mageHealth IntFilter | Int No
arcanistQty IntFilter | Int No
arcanistHealth IntFilter | Int No
lightInfantryQty IntFilter | Int No
lightInfantryHealth IntFilter | Int No
heavyInfantryQty IntFilter | Int No
heavyInfantryHealth IntFilter | Int No
bastionId IntFilter | Int No
bastionPastLocation IntFilter | Int No
bastionCurrentLocation IntFilter | Int No
bastionArrivalBlock IntFilter | Int No

RealmCreateWithoutBuildingsInput

Name Type Nullable
realmId Int No
name String | Null Yes
wallet WalletCreateNestedOneWithoutRealmsL1Input No
bridgedOwner String | Null Yes
walletL2 WalletCreateNestedOneWithoutRealmsL2Input No
walletSettled WalletCreateNestedOneWithoutRealmsSettledInput No
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
resources ResourceCreateNestedManyWithoutRealmInput No
relicsOwned RelicCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitCreateNestedManyWithoutRealmInput No
squad TroopCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyCreateNestedManyWithoutOwnRealmInput No

RealmUncheckedCreateWithoutBuildingsInput

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
owner String | Null Yes
bridgedOwner String | Null Yes
ownerL2 String | Null Yes
settledOwner String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicUncheckedCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
resources ResourceUncheckedCreateNestedManyWithoutRealmInput No
relicsOwned RelicUncheckedCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitUncheckedCreateNestedManyWithoutRealmInput No
squad TroopUncheckedCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyUncheckedCreateNestedManyWithoutOwnRealmInput No

RealmCreateOrConnectWithoutBuildingsInput

Name Type Nullable
where RealmWhereUniqueInput No
create RealmCreateWithoutBuildingsInput | RealmUncheckedCreateWithoutBuildingsInput No


RealmUpdateWithoutBuildingsInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
wallet WalletUpdateOneWithoutRealmsL1NestedInput No
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
walletL2 WalletUpdateOneWithoutRealmsL2NestedInput No
walletSettled WalletUpdateOneWithoutRealmsSettledNestedInput No
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
resources ResourceUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUpdateManyWithoutRealmNestedInput No
squad TroopUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUpdateManyWithoutOwnRealmNestedInput No

RealmUncheckedUpdateWithoutBuildingsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerL2 String | NullableStringFieldUpdateOperationsInput | Null Yes
settledOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUncheckedUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
resources ResourceUncheckedUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUncheckedUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUncheckedUpdateManyWithoutRealmNestedInput No
squad TroopUncheckedUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUncheckedUpdateManyWithoutOwnRealmNestedInput No

RealmCreateWithoutRelicInput

Name Type Nullable
realmId Int No
name String | Null Yes
wallet WalletCreateNestedOneWithoutRealmsL1Input No
bridgedOwner String | Null Yes
walletL2 WalletCreateNestedOneWithoutRealmsL2Input No
walletSettled WalletCreateNestedOneWithoutRealmsSettledInput No
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
orderType OrderType | Null Yes
buildings BuildingCreateNestedManyWithoutRealmInput No
resources ResourceCreateNestedManyWithoutRealmInput No
relicsOwned RelicCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitCreateNestedManyWithoutRealmInput No
squad TroopCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyCreateNestedManyWithoutOwnRealmInput No

RealmUncheckedCreateWithoutRelicInput

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
owner String | Null Yes
bridgedOwner String | Null Yes
ownerL2 String | Null Yes
settledOwner String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
orderType OrderType | Null Yes
buildings BuildingUncheckedCreateNestedManyWithoutRealmInput No
resources ResourceUncheckedCreateNestedManyWithoutRealmInput No
relicsOwned RelicUncheckedCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitUncheckedCreateNestedManyWithoutRealmInput No
squad TroopUncheckedCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyUncheckedCreateNestedManyWithoutOwnRealmInput No

RealmCreateOrConnectWithoutRelicInput

Name Type Nullable
where RealmWhereUniqueInput No
create RealmCreateWithoutRelicInput | RealmUncheckedCreateWithoutRelicInput No

RealmCreateWithoutRelicsOwnedInput

Name Type Nullable
realmId Int No
name String | Null Yes
wallet WalletCreateNestedOneWithoutRealmsL1Input No
bridgedOwner String | Null Yes
walletL2 WalletCreateNestedOneWithoutRealmsL2Input No
walletSettled WalletCreateNestedOneWithoutRealmsSettledInput No
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingCreateNestedManyWithoutRealmInput No
resources ResourceCreateNestedManyWithoutRealmInput No
traits RealmTraitCreateNestedManyWithoutRealmInput No
squad TroopCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyCreateNestedManyWithoutOwnRealmInput No

RealmUncheckedCreateWithoutRelicsOwnedInput

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
owner String | Null Yes
bridgedOwner String | Null Yes
ownerL2 String | Null Yes
settledOwner String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicUncheckedCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingUncheckedCreateNestedManyWithoutRealmInput No
resources ResourceUncheckedCreateNestedManyWithoutRealmInput No
traits RealmTraitUncheckedCreateNestedManyWithoutRealmInput No
squad TroopUncheckedCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyUncheckedCreateNestedManyWithoutOwnRealmInput No

RealmCreateOrConnectWithoutRelicsOwnedInput

Name Type Nullable
where RealmWhereUniqueInput No
create RealmCreateWithoutRelicsOwnedInput | RealmUncheckedCreateWithoutRelicsOwnedInput No


RealmUpdateWithoutRelicInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
wallet WalletUpdateOneWithoutRealmsL1NestedInput No
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
walletL2 WalletUpdateOneWithoutRealmsL2NestedInput No
walletSettled WalletUpdateOneWithoutRealmsSettledNestedInput No
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUpdateManyWithoutRealmNestedInput No
resources ResourceUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUpdateManyWithoutRealmNestedInput No
squad TroopUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUpdateManyWithoutOwnRealmNestedInput No

RealmUncheckedUpdateWithoutRelicInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerL2 String | NullableStringFieldUpdateOperationsInput | Null Yes
settledOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUncheckedUpdateManyWithoutRealmNestedInput No
resources ResourceUncheckedUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUncheckedUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUncheckedUpdateManyWithoutRealmNestedInput No
squad TroopUncheckedUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUncheckedUpdateManyWithoutOwnRealmNestedInput No


RealmUpdateWithoutRelicsOwnedInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
wallet WalletUpdateOneWithoutRealmsL1NestedInput No
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
walletL2 WalletUpdateOneWithoutRealmsL2NestedInput No
walletSettled WalletUpdateOneWithoutRealmsSettledNestedInput No
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUpdateManyWithoutRealmNestedInput No
resources ResourceUpdateManyWithoutRealmNestedInput No
traits RealmTraitUpdateManyWithoutRealmNestedInput No
squad TroopUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUpdateManyWithoutOwnRealmNestedInput No

RealmUncheckedUpdateWithoutRelicsOwnedInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerL2 String | NullableStringFieldUpdateOperationsInput | Null Yes
settledOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUncheckedUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUncheckedUpdateManyWithoutRealmNestedInput No
resources ResourceUncheckedUpdateManyWithoutRealmNestedInput No
traits RealmTraitUncheckedUpdateManyWithoutRealmNestedInput No
squad TroopUncheckedUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUncheckedUpdateManyWithoutOwnRealmNestedInput No

RealmCreateWithoutResourcesInput

Name Type Nullable
realmId Int No
name String | Null Yes
wallet WalletCreateNestedOneWithoutRealmsL1Input No
bridgedOwner String | Null Yes
walletL2 WalletCreateNestedOneWithoutRealmsL2Input No
walletSettled WalletCreateNestedOneWithoutRealmsSettledInput No
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingCreateNestedManyWithoutRealmInput No
relicsOwned RelicCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitCreateNestedManyWithoutRealmInput No
squad TroopCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyCreateNestedManyWithoutOwnRealmInput No

RealmUncheckedCreateWithoutResourcesInput

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
owner String | Null Yes
bridgedOwner String | Null Yes
ownerL2 String | Null Yes
settledOwner String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicUncheckedCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingUncheckedCreateNestedManyWithoutRealmInput No
relicsOwned RelicUncheckedCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitUncheckedCreateNestedManyWithoutRealmInput No
squad TroopUncheckedCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyUncheckedCreateNestedManyWithoutOwnRealmInput No

RealmCreateOrConnectWithoutResourcesInput

Name Type Nullable
where RealmWhereUniqueInput No
create RealmCreateWithoutResourcesInput | RealmUncheckedCreateWithoutResourcesInput No

LaborCreateWithoutResoureInput

Name Type Nullable
vaultBalance DateTime | Null Yes
balance DateTime | Null Yes
lastUpdate DateTime | Null Yes
lastEventId String | Null Yes
qtyBuilt Int No
createdAt DateTime No
updatedAt DateTime No

LaborUncheckedCreateWithoutResoureInput

Name Type Nullable
id Int No
vaultBalance DateTime | Null Yes
balance DateTime | Null Yes
lastUpdate DateTime | Null Yes
lastEventId String | Null Yes
qtyBuilt Int No
createdAt DateTime No
updatedAt DateTime No

LaborCreateOrConnectWithoutResoureInput

Name Type Nullable
where LaborWhereUniqueInput No
create LaborCreateWithoutResoureInput | LaborUncheckedCreateWithoutResoureInput No


RealmUpdateWithoutResourcesInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
wallet WalletUpdateOneWithoutRealmsL1NestedInput No
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
walletL2 WalletUpdateOneWithoutRealmsL2NestedInput No
walletSettled WalletUpdateOneWithoutRealmsSettledNestedInput No
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUpdateManyWithoutRealmNestedInput No
squad TroopUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUpdateManyWithoutOwnRealmNestedInput No

RealmUncheckedUpdateWithoutResourcesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerL2 String | NullableStringFieldUpdateOperationsInput | Null Yes
settledOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUncheckedUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUncheckedUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUncheckedUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUncheckedUpdateManyWithoutRealmNestedInput No
squad TroopUncheckedUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUncheckedUpdateManyWithoutOwnRealmNestedInput No


LaborUpdateWithoutResoureInput

Name Type Nullable
vaultBalance DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
balance DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastUpdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastEventId String | NullableStringFieldUpdateOperationsInput | Null Yes
qtyBuilt Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

LaborUncheckedUpdateWithoutResoureInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
vaultBalance DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
balance DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastUpdate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastEventId String | NullableStringFieldUpdateOperationsInput | Null Yes
qtyBuilt Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

ResourceCreateWithoutLaborInput

Name Type Nullable
resourceId Int No
realm RealmCreateNestedOneWithoutResourcesInput No
level Int No
upgrades ResourceCreateupgradesInput | String No

ResourceUncheckedCreateWithoutLaborInput

Name Type Nullable
id Int No
resourceId Int No
realmId Int | Null Yes
level Int No
upgrades ResourceCreateupgradesInput | String No

ResourceCreateOrConnectWithoutLaborInput

Name Type Nullable
where ResourceWhereUniqueInput No
create ResourceCreateWithoutLaborInput | ResourceUncheckedCreateWithoutLaborInput No


ResourceUpdateWithoutLaborInput

Name Type Nullable
resourceId Int | IntFieldUpdateOperationsInput No
realm RealmUpdateOneWithoutResourcesNestedInput No
level Int | IntFieldUpdateOperationsInput No
upgrades ResourceUpdateupgradesInput | String No

ResourceUncheckedUpdateWithoutLaborInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
resourceId Int | IntFieldUpdateOperationsInput No
realmId Int | NullableIntFieldUpdateOperationsInput | Null Yes
level Int | IntFieldUpdateOperationsInput No
upgrades ResourceUpdateupgradesInput | String No

RealmCreateWithoutTraitsInput

Name Type Nullable
realmId Int No
name String | Null Yes
wallet WalletCreateNestedOneWithoutRealmsL1Input No
bridgedOwner String | Null Yes
walletL2 WalletCreateNestedOneWithoutRealmsL2Input No
walletSettled WalletCreateNestedOneWithoutRealmsSettledInput No
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingCreateNestedManyWithoutRealmInput No
resources ResourceCreateNestedManyWithoutRealmInput No
relicsOwned RelicCreateNestedManyWithoutRealmHolderInput No
squad TroopCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyCreateNestedManyWithoutOwnRealmInput No

RealmUncheckedCreateWithoutTraitsInput

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
owner String | Null Yes
bridgedOwner String | Null Yes
ownerL2 String | Null Yes
settledOwner String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicUncheckedCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingUncheckedCreateNestedManyWithoutRealmInput No
resources ResourceUncheckedCreateNestedManyWithoutRealmInput No
relicsOwned RelicUncheckedCreateNestedManyWithoutRealmHolderInput No
squad TroopUncheckedCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyUncheckedCreateNestedManyWithoutOwnRealmInput No

RealmCreateOrConnectWithoutTraitsInput

Name Type Nullable
where RealmWhereUniqueInput No
create RealmCreateWithoutTraitsInput | RealmUncheckedCreateWithoutTraitsInput No


RealmUpdateWithoutTraitsInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
wallet WalletUpdateOneWithoutRealmsL1NestedInput No
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
walletL2 WalletUpdateOneWithoutRealmsL2NestedInput No
walletSettled WalletUpdateOneWithoutRealmsSettledNestedInput No
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUpdateManyWithoutRealmNestedInput No
resources ResourceUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUpdateManyWithoutRealmHolderNestedInput No
squad TroopUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUpdateManyWithoutOwnRealmNestedInput No

RealmUncheckedUpdateWithoutTraitsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerL2 String | NullableStringFieldUpdateOperationsInput | Null Yes
settledOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUncheckedUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUncheckedUpdateManyWithoutRealmNestedInput No
resources ResourceUncheckedUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUncheckedUpdateManyWithoutRealmHolderNestedInput No
squad TroopUncheckedUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUncheckedUpdateManyWithoutOwnRealmNestedInput No

RealmCreateWithoutSquadInput

Name Type Nullable
realmId Int No
name String | Null Yes
wallet WalletCreateNestedOneWithoutRealmsL1Input No
bridgedOwner String | Null Yes
walletL2 WalletCreateNestedOneWithoutRealmsL2Input No
walletSettled WalletCreateNestedOneWithoutRealmsSettledInput No
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingCreateNestedManyWithoutRealmInput No
resources ResourceCreateNestedManyWithoutRealmInput No
relicsOwned RelicCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyCreateNestedManyWithoutOwnRealmInput No

RealmUncheckedCreateWithoutSquadInput

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
owner String | Null Yes
bridgedOwner String | Null Yes
ownerL2 String | Null Yes
settledOwner String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicUncheckedCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingUncheckedCreateNestedManyWithoutRealmInput No
resources ResourceUncheckedCreateNestedManyWithoutRealmInput No
relicsOwned RelicUncheckedCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitUncheckedCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No
ownArmies ArmyUncheckedCreateNestedManyWithoutOwnRealmInput No

RealmCreateOrConnectWithoutSquadInput

Name Type Nullable
where RealmWhereUniqueInput No
create RealmCreateWithoutSquadInput | RealmUncheckedCreateWithoutSquadInput No


RealmUpdateWithoutSquadInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
wallet WalletUpdateOneWithoutRealmsL1NestedInput No
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
walletL2 WalletUpdateOneWithoutRealmsL2NestedInput No
walletSettled WalletUpdateOneWithoutRealmsSettledNestedInput No
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUpdateManyWithoutRealmNestedInput No
resources ResourceUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUpdateManyWithoutOwnRealmNestedInput No

RealmUncheckedUpdateWithoutSquadInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerL2 String | NullableStringFieldUpdateOperationsInput | Null Yes
settledOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUncheckedUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUncheckedUpdateManyWithoutRealmNestedInput No
resources ResourceUncheckedUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUncheckedUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUncheckedUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUncheckedUpdateManyWithoutOwnRealmNestedInput No

LoreEntityRevisionCreateWithoutEntityInput

Name Type Nullable
revisionNumber Int No
arweaveId String No
title String | Null Yes
markdown String | Null Yes
excerpt String | Null Yes
media_url String | Null Yes
createdAt DateTime | Null Yes
eventIndexed String | Null Yes
pois LorePoisOnEntityRevisionsCreateNestedManyWithoutEntityRevisionInput No
props LorePropsOnEntityRevisionsCreateNestedManyWithoutEntityRevisionInput No

LoreEntityRevisionUncheckedCreateWithoutEntityInput

Name Type Nullable
id Int No
revisionNumber Int No
arweaveId String No
title String | Null Yes
markdown String | Null Yes
excerpt String | Null Yes
media_url String | Null Yes
createdAt DateTime | Null Yes
eventIndexed String | Null Yes
pois LorePoisOnEntityRevisionsUncheckedCreateNestedManyWithoutEntityRevisionInput No
props LorePropsOnEntityRevisionsUncheckedCreateNestedManyWithoutEntityRevisionInput No

LoreEntityRevisionCreateOrConnectWithoutEntityInput

Name Type Nullable
where LoreEntityRevisionWhereUniqueInput No
create LoreEntityRevisionCreateWithoutEntityInput | LoreEntityRevisionUncheckedCreateWithoutEntityInput No

LoreEntityRevisionCreateManyEntityInputEnvelope

Name Type Nullable
data LoreEntityRevisionCreateManyEntityInput[] No
skipDuplicates Boolean No


LoreEntityRevisionUpdateWithWhereUniqueWithoutEntityInput

Name Type Nullable
where LoreEntityRevisionWhereUniqueInput No
data LoreEntityRevisionUpdateWithoutEntityInput | LoreEntityRevisionUncheckedUpdateWithoutEntityInput No

LoreEntityRevisionUpdateManyWithWhereWithoutEntityInput

Name Type Nullable
where LoreEntityRevisionScalarWhereInput No
data LoreEntityRevisionUpdateManyMutationInput | LoreEntityRevisionUncheckedUpdateManyWithoutRevisionsInput No

LoreEntityRevisionScalarWhereInput

Name Type Nullable
AND LoreEntityRevisionScalarWhereInput | LoreEntityRevisionScalarWhereInput[] No
OR LoreEntityRevisionScalarWhereInput[] No
NOT LoreEntityRevisionScalarWhereInput | LoreEntityRevisionScalarWhereInput[] No
id IntFilter | Int No
revisionNumber IntFilter | Int No
arweaveId StringFilter | String No
title StringNullableFilter | String | Null Yes
markdown StringNullableFilter | String | Null Yes
excerpt StringNullableFilter | String | Null Yes
media_url StringNullableFilter | String | Null Yes
createdAt DateTimeNullableFilter | DateTime | Null Yes
entityId IntFilter | Int No
eventIndexed StringNullableFilter | String | Null Yes

LoreEntityCreateWithoutRevisionsInput

Name Type Nullable
id Int No
owner String | Null Yes
ownerDisplayName String | Null Yes
kind Int No
eventIndexed String | Null Yes

LoreEntityUncheckedCreateWithoutRevisionsInput

Name Type Nullable
id Int No
owner String | Null Yes
ownerDisplayName String | Null Yes
kind Int No
eventIndexed String | Null Yes

LoreEntityCreateOrConnectWithoutRevisionsInput

Name Type Nullable
where LoreEntityWhereUniqueInput No
create LoreEntityCreateWithoutRevisionsInput | LoreEntityUncheckedCreateWithoutRevisionsInput No

LorePoisOnEntityRevisionsCreateWithoutEntityRevisionInput

Name Type Nullable
poi LorePOICreateNestedOneWithoutEntitiesInput No
assetId String | Null Yes

LorePoisOnEntityRevisionsUncheckedCreateWithoutEntityRevisionInput

Name Type Nullable
id Int No
poiId Int No
assetId String | Null Yes

LorePoisOnEntityRevisionsCreateOrConnectWithoutEntityRevisionInput

Name Type Nullable
where LorePoisOnEntityRevisionsWhereUniqueInput No
create LorePoisOnEntityRevisionsCreateWithoutEntityRevisionInput | LorePoisOnEntityRevisionsUncheckedCreateWithoutEntityRevisionInput No

LorePoisOnEntityRevisionsCreateManyEntityRevisionInputEnvelope

Name Type Nullable
data LorePoisOnEntityRevisionsCreateManyEntityRevisionInput[] No
skipDuplicates Boolean No

LorePropsOnEntityRevisionsCreateWithoutEntityRevisionInput

Name Type Nullable
prop LorePropCreateNestedOneWithoutEntitiesInput No
value String | Null Yes

LorePropsOnEntityRevisionsUncheckedCreateWithoutEntityRevisionInput

Name Type Nullable
id Int No
propId Int No
value String | Null Yes

LorePropsOnEntityRevisionsCreateOrConnectWithoutEntityRevisionInput

Name Type Nullable
where LorePropsOnEntityRevisionsWhereUniqueInput No
create LorePropsOnEntityRevisionsCreateWithoutEntityRevisionInput | LorePropsOnEntityRevisionsUncheckedCreateWithoutEntityRevisionInput No

LorePropsOnEntityRevisionsCreateManyEntityRevisionInputEnvelope

Name Type Nullable
data LorePropsOnEntityRevisionsCreateManyEntityRevisionInput[] No
skipDuplicates Boolean No


LoreEntityUpdateWithoutRevisionsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerDisplayName String | NullableStringFieldUpdateOperationsInput | Null Yes
kind Int | IntFieldUpdateOperationsInput No
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes

LoreEntityUncheckedUpdateWithoutRevisionsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerDisplayName String | NullableStringFieldUpdateOperationsInput | Null Yes
kind Int | IntFieldUpdateOperationsInput No
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes


LorePoisOnEntityRevisionsUpdateWithWhereUniqueWithoutEntityRevisionInput

Name Type Nullable
where LorePoisOnEntityRevisionsWhereUniqueInput No
data LorePoisOnEntityRevisionsUpdateWithoutEntityRevisionInput | LorePoisOnEntityRevisionsUncheckedUpdateWithoutEntityRevisionInput No

LorePoisOnEntityRevisionsUpdateManyWithWhereWithoutEntityRevisionInput

Name Type Nullable
where LorePoisOnEntityRevisionsScalarWhereInput No
data LorePoisOnEntityRevisionsUpdateManyMutationInput | LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutPoisInput No

LorePoisOnEntityRevisionsScalarWhereInput

Name Type Nullable
AND LorePoisOnEntityRevisionsScalarWhereInput | LorePoisOnEntityRevisionsScalarWhereInput[] No
OR LorePoisOnEntityRevisionsScalarWhereInput[] No
NOT LorePoisOnEntityRevisionsScalarWhereInput | LorePoisOnEntityRevisionsScalarWhereInput[] No
id IntFilter | Int No
entityRevisionId IntFilter | Int No
poiId IntFilter | Int No
assetId StringNullableFilter | String | Null Yes


LorePropsOnEntityRevisionsUpdateWithWhereUniqueWithoutEntityRevisionInput

Name Type Nullable
where LorePropsOnEntityRevisionsWhereUniqueInput No
data LorePropsOnEntityRevisionsUpdateWithoutEntityRevisionInput | LorePropsOnEntityRevisionsUncheckedUpdateWithoutEntityRevisionInput No

LorePropsOnEntityRevisionsUpdateManyWithWhereWithoutEntityRevisionInput

Name Type Nullable
where LorePropsOnEntityRevisionsScalarWhereInput No
data LorePropsOnEntityRevisionsUpdateManyMutationInput | LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutPropsInput No

LorePropsOnEntityRevisionsScalarWhereInput

Name Type Nullable
AND LorePropsOnEntityRevisionsScalarWhereInput | LorePropsOnEntityRevisionsScalarWhereInput[] No
OR LorePropsOnEntityRevisionsScalarWhereInput[] No
NOT LorePropsOnEntityRevisionsScalarWhereInput | LorePropsOnEntityRevisionsScalarWhereInput[] No
id IntFilter | Int No
entityRevisionId IntFilter | Int No
propId IntFilter | Int No
value StringNullableFilter | String | Null Yes

LorePoisOnEntityRevisionsCreateWithoutPoiInput

Name Type Nullable
entityRevision LoreEntityRevisionCreateNestedOneWithoutPoisInput No
assetId String | Null Yes

LorePoisOnEntityRevisionsUncheckedCreateWithoutPoiInput

Name Type Nullable
id Int No
entityRevisionId Int No
assetId String | Null Yes

LorePoisOnEntityRevisionsCreateOrConnectWithoutPoiInput

Name Type Nullable
where LorePoisOnEntityRevisionsWhereUniqueInput No
create LorePoisOnEntityRevisionsCreateWithoutPoiInput | LorePoisOnEntityRevisionsUncheckedCreateWithoutPoiInput No

LorePoisOnEntityRevisionsCreateManyPoiInputEnvelope

Name Type Nullable
data LorePoisOnEntityRevisionsCreateManyPoiInput[] No
skipDuplicates Boolean No


LorePoisOnEntityRevisionsUpdateWithWhereUniqueWithoutPoiInput

Name Type Nullable
where LorePoisOnEntityRevisionsWhereUniqueInput No
data LorePoisOnEntityRevisionsUpdateWithoutPoiInput | LorePoisOnEntityRevisionsUncheckedUpdateWithoutPoiInput No

LorePoisOnEntityRevisionsUpdateManyWithWhereWithoutPoiInput

Name Type Nullable
where LorePoisOnEntityRevisionsScalarWhereInput No
data LorePoisOnEntityRevisionsUpdateManyMutationInput | LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutEntitiesInput No

LorePropsOnEntityRevisionsCreateWithoutPropInput

Name Type Nullable
entityRevision LoreEntityRevisionCreateNestedOneWithoutPropsInput No
value String | Null Yes

LorePropsOnEntityRevisionsUncheckedCreateWithoutPropInput

Name Type Nullable
id Int No
entityRevisionId Int No
value String | Null Yes

LorePropsOnEntityRevisionsCreateOrConnectWithoutPropInput

Name Type Nullable
where LorePropsOnEntityRevisionsWhereUniqueInput No
create LorePropsOnEntityRevisionsCreateWithoutPropInput | LorePropsOnEntityRevisionsUncheckedCreateWithoutPropInput No

LorePropsOnEntityRevisionsCreateManyPropInputEnvelope

Name Type Nullable
data LorePropsOnEntityRevisionsCreateManyPropInput[] No
skipDuplicates Boolean No


LorePropsOnEntityRevisionsUpdateWithWhereUniqueWithoutPropInput

Name Type Nullable
where LorePropsOnEntityRevisionsWhereUniqueInput No
data LorePropsOnEntityRevisionsUpdateWithoutPropInput | LorePropsOnEntityRevisionsUncheckedUpdateWithoutPropInput No

LorePropsOnEntityRevisionsUpdateManyWithWhereWithoutPropInput

Name Type Nullable
where LorePropsOnEntityRevisionsScalarWhereInput No
data LorePropsOnEntityRevisionsUpdateManyMutationInput | LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutEntitiesInput No

LoreEntityRevisionCreateWithoutPoisInput

Name Type Nullable
revisionNumber Int No
arweaveId String No
title String | Null Yes
markdown String | Null Yes
excerpt String | Null Yes
media_url String | Null Yes
createdAt DateTime | Null Yes
entity LoreEntityCreateNestedOneWithoutRevisionsInput No
eventIndexed String | Null Yes
props LorePropsOnEntityRevisionsCreateNestedManyWithoutEntityRevisionInput No

LoreEntityRevisionUncheckedCreateWithoutPoisInput

Name Type Nullable
id Int No
revisionNumber Int No
arweaveId String No
title String | Null Yes
markdown String | Null Yes
excerpt String | Null Yes
media_url String | Null Yes
createdAt DateTime | Null Yes
entityId Int No
eventIndexed String | Null Yes
props LorePropsOnEntityRevisionsUncheckedCreateNestedManyWithoutEntityRevisionInput No

LoreEntityRevisionCreateOrConnectWithoutPoisInput

Name Type Nullable
where LoreEntityRevisionWhereUniqueInput No
create LoreEntityRevisionCreateWithoutPoisInput | LoreEntityRevisionUncheckedCreateWithoutPoisInput No

LorePOICreateWithoutEntitiesInput

Name Type Nullable
id Int No
name String No
assetType String | Null Yes

LorePOIUncheckedCreateWithoutEntitiesInput

Name Type Nullable
id Int No
name String No
assetType String | Null Yes

LorePOICreateOrConnectWithoutEntitiesInput

Name Type Nullable
where LorePOIWhereUniqueInput No
create LorePOICreateWithoutEntitiesInput | LorePOIUncheckedCreateWithoutEntitiesInput No


LoreEntityRevisionUpdateWithoutPoisInput

Name Type Nullable
revisionNumber Int | IntFieldUpdateOperationsInput No
arweaveId String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
markdown String | NullableStringFieldUpdateOperationsInput | Null Yes
excerpt String | NullableStringFieldUpdateOperationsInput | Null Yes
media_url String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
entity LoreEntityUpdateOneRequiredWithoutRevisionsNestedInput No
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes
props LorePropsOnEntityRevisionsUpdateManyWithoutEntityRevisionNestedInput No

LoreEntityRevisionUncheckedUpdateWithoutPoisInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
revisionNumber Int | IntFieldUpdateOperationsInput No
arweaveId String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
markdown String | NullableStringFieldUpdateOperationsInput | Null Yes
excerpt String | NullableStringFieldUpdateOperationsInput | Null Yes
media_url String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
entityId Int | IntFieldUpdateOperationsInput No
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes
props LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutEntityRevisionNestedInput No


LorePOIUpdateWithoutEntitiesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
assetType String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePOIUncheckedUpdateWithoutEntitiesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
assetType String | NullableStringFieldUpdateOperationsInput | Null Yes

LoreEntityRevisionCreateWithoutPropsInput

Name Type Nullable
revisionNumber Int No
arweaveId String No
title String | Null Yes
markdown String | Null Yes
excerpt String | Null Yes
media_url String | Null Yes
createdAt DateTime | Null Yes
entity LoreEntityCreateNestedOneWithoutRevisionsInput No
eventIndexed String | Null Yes
pois LorePoisOnEntityRevisionsCreateNestedManyWithoutEntityRevisionInput No

LoreEntityRevisionUncheckedCreateWithoutPropsInput

Name Type Nullable
id Int No
revisionNumber Int No
arweaveId String No
title String | Null Yes
markdown String | Null Yes
excerpt String | Null Yes
media_url String | Null Yes
createdAt DateTime | Null Yes
entityId Int No
eventIndexed String | Null Yes
pois LorePoisOnEntityRevisionsUncheckedCreateNestedManyWithoutEntityRevisionInput No

LoreEntityRevisionCreateOrConnectWithoutPropsInput

Name Type Nullable
where LoreEntityRevisionWhereUniqueInput No
create LoreEntityRevisionCreateWithoutPropsInput | LoreEntityRevisionUncheckedCreateWithoutPropsInput No

LorePropCreateWithoutEntitiesInput

Name Type Nullable
id Int No
name String No

LorePropUncheckedCreateWithoutEntitiesInput

Name Type Nullable
id Int No
name String No

LorePropCreateOrConnectWithoutEntitiesInput

Name Type Nullable
where LorePropWhereUniqueInput No
create LorePropCreateWithoutEntitiesInput | LorePropUncheckedCreateWithoutEntitiesInput No


LoreEntityRevisionUpdateWithoutPropsInput

Name Type Nullable
revisionNumber Int | IntFieldUpdateOperationsInput No
arweaveId String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
markdown String | NullableStringFieldUpdateOperationsInput | Null Yes
excerpt String | NullableStringFieldUpdateOperationsInput | Null Yes
media_url String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
entity LoreEntityUpdateOneRequiredWithoutRevisionsNestedInput No
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes
pois LorePoisOnEntityRevisionsUpdateManyWithoutEntityRevisionNestedInput No

LoreEntityRevisionUncheckedUpdateWithoutPropsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
revisionNumber Int | IntFieldUpdateOperationsInput No
arweaveId String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
markdown String | NullableStringFieldUpdateOperationsInput | Null Yes
excerpt String | NullableStringFieldUpdateOperationsInput | Null Yes
media_url String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
entityId Int | IntFieldUpdateOperationsInput No
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes
pois LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutEntityRevisionNestedInput No


LorePropUpdateWithoutEntitiesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

LorePropUncheckedUpdateWithoutEntitiesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

RealmCreateWithoutOwnArmiesInput

Name Type Nullable
realmId Int No
name String | Null Yes
wallet WalletCreateNestedOneWithoutRealmsL1Input No
bridgedOwner String | Null Yes
walletL2 WalletCreateNestedOneWithoutRealmsL2Input No
walletSettled WalletCreateNestedOneWithoutRealmsSettledInput No
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingCreateNestedManyWithoutRealmInput No
resources ResourceCreateNestedManyWithoutRealmInput No
relicsOwned RelicCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitCreateNestedManyWithoutRealmInput No
squad TroopCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No

RealmUncheckedCreateWithoutOwnArmiesInput

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
owner String | Null Yes
bridgedOwner String | Null Yes
ownerL2 String | Null Yes
settledOwner String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
relic RelicUncheckedCreateNestedOneWithoutOriginRealmInput No
orderType OrderType | Null Yes
buildings BuildingUncheckedCreateNestedManyWithoutRealmInput No
resources ResourceUncheckedCreateNestedManyWithoutRealmInput No
relicsOwned RelicUncheckedCreateNestedManyWithoutRealmHolderInput No
traits RealmTraitUncheckedCreateNestedManyWithoutRealmInput No
squad TroopUncheckedCreateNestedManyWithoutRealmInput No
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No

RealmCreateOrConnectWithoutOwnArmiesInput

Name Type Nullable
where RealmWhereUniqueInput No
create RealmCreateWithoutOwnArmiesInput | RealmUncheckedCreateWithoutOwnArmiesInput No


RealmUpdateWithoutOwnArmiesInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
wallet WalletUpdateOneWithoutRealmsL1NestedInput No
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
walletL2 WalletUpdateOneWithoutRealmsL2NestedInput No
walletSettled WalletUpdateOneWithoutRealmsSettledNestedInput No
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUpdateManyWithoutRealmNestedInput No
resources ResourceUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUpdateManyWithoutRealmNestedInput No
squad TroopUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No

RealmUncheckedUpdateWithoutOwnArmiesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerL2 String | NullableStringFieldUpdateOperationsInput | Null Yes
settledOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUncheckedUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUncheckedUpdateManyWithoutRealmNestedInput No
resources ResourceUncheckedUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUncheckedUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUncheckedUpdateManyWithoutRealmNestedInput No
squad TroopUncheckedUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No

RealmCreateManyWalletInput

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
bridgedOwner String | Null Yes
ownerL2 String | Null Yes
settledOwner String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
orderType OrderType | Null Yes
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No

RealmCreateManyWalletL2Input

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
owner String | Null Yes
bridgedOwner String | Null Yes
settledOwner String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
orderType OrderType | Null Yes
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No

RealmCreateManyWalletSettledInput

Name Type Nullable
id Int No
realmId Int No
name String | Null Yes
owner String | Null Yes
bridgedOwner String | Null Yes
ownerL2 String | Null Yes
wonder String | Null Yes
rarityRank Int No
rarityScore Float No
imageUrl String No
orderType OrderType | Null Yes
lastAttacked DateTime | Null Yes
lastClaimTime DateTime | Null Yes
lastTick DateTime | Null Yes
lastVaultTime DateTime | Null Yes
longitude Float No
latitude Float No

RealmUpdateWithoutWalletInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
walletL2 WalletUpdateOneWithoutRealmsL2NestedInput No
walletSettled WalletUpdateOneWithoutRealmsSettledNestedInput No
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUpdateManyWithoutRealmNestedInput No
resources ResourceUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUpdateManyWithoutRealmNestedInput No
squad TroopUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUpdateManyWithoutOwnRealmNestedInput No

RealmUncheckedUpdateWithoutWalletInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerL2 String | NullableStringFieldUpdateOperationsInput | Null Yes
settledOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUncheckedUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUncheckedUpdateManyWithoutRealmNestedInput No
resources ResourceUncheckedUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUncheckedUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUncheckedUpdateManyWithoutRealmNestedInput No
squad TroopUncheckedUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUncheckedUpdateManyWithoutOwnRealmNestedInput No

RealmUncheckedUpdateManyWithoutRealmsL1Input

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerL2 String | NullableStringFieldUpdateOperationsInput | Null Yes
settledOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No

RealmUpdateWithoutWalletL2Input

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
wallet WalletUpdateOneWithoutRealmsL1NestedInput No
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
walletSettled WalletUpdateOneWithoutRealmsSettledNestedInput No
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUpdateManyWithoutRealmNestedInput No
resources ResourceUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUpdateManyWithoutRealmNestedInput No
squad TroopUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUpdateManyWithoutOwnRealmNestedInput No

RealmUncheckedUpdateWithoutWalletL2Input

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
settledOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUncheckedUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUncheckedUpdateManyWithoutRealmNestedInput No
resources ResourceUncheckedUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUncheckedUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUncheckedUpdateManyWithoutRealmNestedInput No
squad TroopUncheckedUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUncheckedUpdateManyWithoutOwnRealmNestedInput No

RealmUncheckedUpdateManyWithoutRealmsL2Input

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
settledOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No

RealmUpdateWithoutWalletSettledInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
wallet WalletUpdateOneWithoutRealmsL1NestedInput No
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
walletL2 WalletUpdateOneWithoutRealmsL2NestedInput No
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUpdateManyWithoutRealmNestedInput No
resources ResourceUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUpdateManyWithoutRealmNestedInput No
squad TroopUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUpdateManyWithoutOwnRealmNestedInput No

RealmUncheckedUpdateWithoutWalletSettledInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerL2 String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
relic RelicUncheckedUpdateOneWithoutOriginRealmNestedInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
buildings BuildingUncheckedUpdateManyWithoutRealmNestedInput No
resources ResourceUncheckedUpdateManyWithoutRealmNestedInput No
relicsOwned RelicUncheckedUpdateManyWithoutRealmHolderNestedInput No
traits RealmTraitUncheckedUpdateManyWithoutRealmNestedInput No
squad TroopUncheckedUpdateManyWithoutRealmNestedInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
ownArmies ArmyUncheckedUpdateManyWithoutOwnRealmNestedInput No

RealmUncheckedUpdateManyWithoutRealmsSettledInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
realmId Int | IntFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
owner String | NullableStringFieldUpdateOperationsInput | Null Yes
bridgedOwner String | NullableStringFieldUpdateOperationsInput | Null Yes
ownerL2 String | NullableStringFieldUpdateOperationsInput | Null Yes
wonder String | NullableStringFieldUpdateOperationsInput | Null Yes
rarityRank Int | IntFieldUpdateOperationsInput No
rarityScore Float | FloatFieldUpdateOperationsInput No
imageUrl String | StringFieldUpdateOperationsInput No
orderType OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null Yes
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastClaimTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastTick DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
lastVaultTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
longitude Float | FloatFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No

BuildingCreateManyRealmInput

Name Type Nullable
id Int No
buildingId Int No
eventId String No
buildingIntegrity Int No
builds BuildingCreatebuildsInput | String No

ResourceCreateManyRealmInput

Name Type Nullable
id Int No
resourceId Int No
level Int No
upgrades ResourceCreateupgradesInput | String No

RelicCreateManyRealmHolderInput

Name Type Nullable
realmId Int No
isAnnexed Boolean No

RealmTraitCreateManyRealmInput

Name Type Nullable
type RealmTraitType No
qty Int No

TroopCreateManyRealmInput

Name Type Nullable
troopId Int No
index Int No
type Int No
tier Int No
building Int No
agility Int No
attack Int No
armor Int No
vitality Int No
wisdom Int No
squadSlot Int No
timestamp DateTime | Null Yes

ArmyCreateManyOwnRealmInput

Name Type Nullable
armyId Int No
orderId Int No
destinationRealmId Int No
destinationArrivalTime DateTime | Null Yes
armyPacked Int No
lastAttacked DateTime | Null Yes
xp Int No
level Int No
callSign Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No
bastionId Int No
bastionPastLocation Int No
bastionCurrentLocation Int No
bastionArrivalBlock Int No

BuildingUpdateWithoutRealmInput

Name Type Nullable
buildingId Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
buildingIntegrity Int | IntFieldUpdateOperationsInput No
builds BuildingUpdatebuildsInput | String No

BuildingUncheckedUpdateWithoutRealmInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
buildingId Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
buildingIntegrity Int | IntFieldUpdateOperationsInput No
builds BuildingUpdatebuildsInput | String No

BuildingUncheckedUpdateManyWithoutBuildingsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
buildingId Int | IntFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
buildingIntegrity Int | IntFieldUpdateOperationsInput No
builds BuildingUpdatebuildsInput | String No

ResourceUpdateWithoutRealmInput

Name Type Nullable
resourceId Int | IntFieldUpdateOperationsInput No
labor LaborUpdateOneWithoutResoureNestedInput No
level Int | IntFieldUpdateOperationsInput No
upgrades ResourceUpdateupgradesInput | String No

ResourceUncheckedUpdateWithoutRealmInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
resourceId Int | IntFieldUpdateOperationsInput No
labor LaborUncheckedUpdateOneWithoutResoureNestedInput No
level Int | IntFieldUpdateOperationsInput No
upgrades ResourceUpdateupgradesInput | String No

ResourceUncheckedUpdateManyWithoutResourcesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
resourceId Int | IntFieldUpdateOperationsInput No
level Int | IntFieldUpdateOperationsInput No
upgrades ResourceUpdateupgradesInput | String No

RelicUpdateWithoutRealmHolderInput

Name Type Nullable
originRealm RealmUpdateOneWithoutRelicNestedInput No
isAnnexed Boolean | BoolFieldUpdateOperationsInput No

RelicUncheckedUpdateWithoutRealmHolderInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
isAnnexed Boolean | BoolFieldUpdateOperationsInput No

RelicUncheckedUpdateManyWithoutRelicsOwnedInput

Name Type Nullable
realmId Int | IntFieldUpdateOperationsInput No
isAnnexed Boolean | BoolFieldUpdateOperationsInput No

RealmTraitUpdateWithoutRealmInput

Name Type Nullable
type RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput No
qty Int | IntFieldUpdateOperationsInput No

RealmTraitUncheckedUpdateWithoutRealmInput

Name Type Nullable
type RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput No
qty Int | IntFieldUpdateOperationsInput No

RealmTraitUncheckedUpdateManyWithoutTraitsInput

Name Type Nullable
type RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput No
qty Int | IntFieldUpdateOperationsInput No

TroopUpdateWithoutRealmInput

Name Type Nullable
troopId Int | IntFieldUpdateOperationsInput No
index Int | IntFieldUpdateOperationsInput No
type Int | IntFieldUpdateOperationsInput No
tier Int | IntFieldUpdateOperationsInput No
building Int | IntFieldUpdateOperationsInput No
agility Int | IntFieldUpdateOperationsInput No
attack Int | IntFieldUpdateOperationsInput No
armor Int | IntFieldUpdateOperationsInput No
vitality Int | IntFieldUpdateOperationsInput No
wisdom Int | IntFieldUpdateOperationsInput No
squadSlot Int | IntFieldUpdateOperationsInput No
timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

TroopUncheckedUpdateWithoutRealmInput

Name Type Nullable
troopId Int | IntFieldUpdateOperationsInput No
index Int | IntFieldUpdateOperationsInput No
type Int | IntFieldUpdateOperationsInput No
tier Int | IntFieldUpdateOperationsInput No
building Int | IntFieldUpdateOperationsInput No
agility Int | IntFieldUpdateOperationsInput No
attack Int | IntFieldUpdateOperationsInput No
armor Int | IntFieldUpdateOperationsInput No
vitality Int | IntFieldUpdateOperationsInput No
wisdom Int | IntFieldUpdateOperationsInput No
squadSlot Int | IntFieldUpdateOperationsInput No
timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

TroopUncheckedUpdateManyWithoutSquadInput

Name Type Nullable
troopId Int | IntFieldUpdateOperationsInput No
index Int | IntFieldUpdateOperationsInput No
type Int | IntFieldUpdateOperationsInput No
tier Int | IntFieldUpdateOperationsInput No
building Int | IntFieldUpdateOperationsInput No
agility Int | IntFieldUpdateOperationsInput No
attack Int | IntFieldUpdateOperationsInput No
armor Int | IntFieldUpdateOperationsInput No
vitality Int | IntFieldUpdateOperationsInput No
wisdom Int | IntFieldUpdateOperationsInput No
squadSlot Int | IntFieldUpdateOperationsInput No
timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

ArmyUpdateWithoutOwnRealmInput

Name Type Nullable
armyId Int | IntFieldUpdateOperationsInput No
orderId Int | IntFieldUpdateOperationsInput No
destinationRealmId Int | IntFieldUpdateOperationsInput No
destinationArrivalTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
armyPacked Int | IntFieldUpdateOperationsInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
xp Int | IntFieldUpdateOperationsInput No
level Int | IntFieldUpdateOperationsInput No
callSign Int | IntFieldUpdateOperationsInput No
lightCavalryQty Int | IntFieldUpdateOperationsInput No
lightCavalryHealth Int | IntFieldUpdateOperationsInput No
heavyCavalryQty Int | IntFieldUpdateOperationsInput No
heavyCavalryHealth Int | IntFieldUpdateOperationsInput No
archerQty Int | IntFieldUpdateOperationsInput No
archerHealth Int | IntFieldUpdateOperationsInput No
longbowQty Int | IntFieldUpdateOperationsInput No
longbowHealth Int | IntFieldUpdateOperationsInput No
mageQty Int | IntFieldUpdateOperationsInput No
mageHealth Int | IntFieldUpdateOperationsInput No
arcanistQty Int | IntFieldUpdateOperationsInput No
arcanistHealth Int | IntFieldUpdateOperationsInput No
lightInfantryQty Int | IntFieldUpdateOperationsInput No
lightInfantryHealth Int | IntFieldUpdateOperationsInput No
heavyInfantryQty Int | IntFieldUpdateOperationsInput No
heavyInfantryHealth Int | IntFieldUpdateOperationsInput No
bastionId Int | IntFieldUpdateOperationsInput No
bastionPastLocation Int | IntFieldUpdateOperationsInput No
bastionCurrentLocation Int | IntFieldUpdateOperationsInput No
bastionArrivalBlock Int | IntFieldUpdateOperationsInput No

ArmyUncheckedUpdateWithoutOwnRealmInput

Name Type Nullable
armyId Int | IntFieldUpdateOperationsInput No
orderId Int | IntFieldUpdateOperationsInput No
destinationRealmId Int | IntFieldUpdateOperationsInput No
destinationArrivalTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
armyPacked Int | IntFieldUpdateOperationsInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
xp Int | IntFieldUpdateOperationsInput No
level Int | IntFieldUpdateOperationsInput No
callSign Int | IntFieldUpdateOperationsInput No
lightCavalryQty Int | IntFieldUpdateOperationsInput No
lightCavalryHealth Int | IntFieldUpdateOperationsInput No
heavyCavalryQty Int | IntFieldUpdateOperationsInput No
heavyCavalryHealth Int | IntFieldUpdateOperationsInput No
archerQty Int | IntFieldUpdateOperationsInput No
archerHealth Int | IntFieldUpdateOperationsInput No
longbowQty Int | IntFieldUpdateOperationsInput No
longbowHealth Int | IntFieldUpdateOperationsInput No
mageQty Int | IntFieldUpdateOperationsInput No
mageHealth Int | IntFieldUpdateOperationsInput No
arcanistQty Int | IntFieldUpdateOperationsInput No
arcanistHealth Int | IntFieldUpdateOperationsInput No
lightInfantryQty Int | IntFieldUpdateOperationsInput No
lightInfantryHealth Int | IntFieldUpdateOperationsInput No
heavyInfantryQty Int | IntFieldUpdateOperationsInput No
heavyInfantryHealth Int | IntFieldUpdateOperationsInput No
bastionId Int | IntFieldUpdateOperationsInput No
bastionPastLocation Int | IntFieldUpdateOperationsInput No
bastionCurrentLocation Int | IntFieldUpdateOperationsInput No
bastionArrivalBlock Int | IntFieldUpdateOperationsInput No

ArmyUncheckedUpdateManyWithoutOwnArmiesInput

Name Type Nullable
armyId Int | IntFieldUpdateOperationsInput No
orderId Int | IntFieldUpdateOperationsInput No
destinationRealmId Int | IntFieldUpdateOperationsInput No
destinationArrivalTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
armyPacked Int | IntFieldUpdateOperationsInput No
lastAttacked DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
xp Int | IntFieldUpdateOperationsInput No
level Int | IntFieldUpdateOperationsInput No
callSign Int | IntFieldUpdateOperationsInput No
lightCavalryQty Int | IntFieldUpdateOperationsInput No
lightCavalryHealth Int | IntFieldUpdateOperationsInput No
heavyCavalryQty Int | IntFieldUpdateOperationsInput No
heavyCavalryHealth Int | IntFieldUpdateOperationsInput No
archerQty Int | IntFieldUpdateOperationsInput No
archerHealth Int | IntFieldUpdateOperationsInput No
longbowQty Int | IntFieldUpdateOperationsInput No
longbowHealth Int | IntFieldUpdateOperationsInput No
mageQty Int | IntFieldUpdateOperationsInput No
mageHealth Int | IntFieldUpdateOperationsInput No
arcanistQty Int | IntFieldUpdateOperationsInput No
arcanistHealth Int | IntFieldUpdateOperationsInput No
lightInfantryQty Int | IntFieldUpdateOperationsInput No
lightInfantryHealth Int | IntFieldUpdateOperationsInput No
heavyInfantryQty Int | IntFieldUpdateOperationsInput No
heavyInfantryHealth Int | IntFieldUpdateOperationsInput No
bastionId Int | IntFieldUpdateOperationsInput No
bastionPastLocation Int | IntFieldUpdateOperationsInput No
bastionCurrentLocation Int | IntFieldUpdateOperationsInput No
bastionArrivalBlock Int | IntFieldUpdateOperationsInput No

LoreEntityRevisionCreateManyEntityInput

Name Type Nullable
id Int No
revisionNumber Int No
arweaveId String No
title String | Null Yes
markdown String | Null Yes
excerpt String | Null Yes
media_url String | Null Yes
createdAt DateTime | Null Yes
eventIndexed String | Null Yes

LoreEntityRevisionUpdateWithoutEntityInput

Name Type Nullable
revisionNumber Int | IntFieldUpdateOperationsInput No
arweaveId String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
markdown String | NullableStringFieldUpdateOperationsInput | Null Yes
excerpt String | NullableStringFieldUpdateOperationsInput | Null Yes
media_url String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes
pois LorePoisOnEntityRevisionsUpdateManyWithoutEntityRevisionNestedInput No
props LorePropsOnEntityRevisionsUpdateManyWithoutEntityRevisionNestedInput No

LoreEntityRevisionUncheckedUpdateWithoutEntityInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
revisionNumber Int | IntFieldUpdateOperationsInput No
arweaveId String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
markdown String | NullableStringFieldUpdateOperationsInput | Null Yes
excerpt String | NullableStringFieldUpdateOperationsInput | Null Yes
media_url String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes
pois LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutEntityRevisionNestedInput No
props LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutEntityRevisionNestedInput No

LoreEntityRevisionUncheckedUpdateManyWithoutRevisionsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
revisionNumber Int | IntFieldUpdateOperationsInput No
arweaveId String | StringFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
markdown String | NullableStringFieldUpdateOperationsInput | Null Yes
excerpt String | NullableStringFieldUpdateOperationsInput | Null Yes
media_url String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
eventIndexed String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePoisOnEntityRevisionsCreateManyEntityRevisionInput

Name Type Nullable
id Int No
poiId Int No
assetId String | Null Yes

LorePropsOnEntityRevisionsCreateManyEntityRevisionInput

Name Type Nullable
id Int No
propId Int No
value String | Null Yes

LorePoisOnEntityRevisionsUpdateWithoutEntityRevisionInput

Name Type Nullable
poi LorePOIUpdateOneRequiredWithoutEntitiesNestedInput No
assetId String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePoisOnEntityRevisionsUncheckedUpdateWithoutEntityRevisionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
poiId Int | IntFieldUpdateOperationsInput No
assetId String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutPoisInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
poiId Int | IntFieldUpdateOperationsInput No
assetId String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePropsOnEntityRevisionsUpdateWithoutEntityRevisionInput

Name Type Nullable
prop LorePropUpdateOneRequiredWithoutEntitiesNestedInput No
value String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePropsOnEntityRevisionsUncheckedUpdateWithoutEntityRevisionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
propId Int | IntFieldUpdateOperationsInput No
value String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutPropsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
propId Int | IntFieldUpdateOperationsInput No
value String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePoisOnEntityRevisionsCreateManyPoiInput

Name Type Nullable
id Int No
entityRevisionId Int No
assetId String | Null Yes

LorePoisOnEntityRevisionsUpdateWithoutPoiInput

Name Type Nullable
entityRevision LoreEntityRevisionUpdateOneRequiredWithoutPoisNestedInput No
assetId String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePoisOnEntityRevisionsUncheckedUpdateWithoutPoiInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
entityRevisionId Int | IntFieldUpdateOperationsInput No
assetId String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutEntitiesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
entityRevisionId Int | IntFieldUpdateOperationsInput No
assetId String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePropsOnEntityRevisionsCreateManyPropInput

Name Type Nullable
id Int No
entityRevisionId Int No
value String | Null Yes

LorePropsOnEntityRevisionsUpdateWithoutPropInput

Name Type Nullable
entityRevision LoreEntityRevisionUpdateOneRequiredWithoutPropsNestedInput No
value String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePropsOnEntityRevisionsUncheckedUpdateWithoutPropInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
entityRevisionId Int | IntFieldUpdateOperationsInput No
value String | NullableStringFieldUpdateOperationsInput | Null Yes

LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutEntitiesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
entityRevisionId Int | IntFieldUpdateOperationsInput No
value String | NullableStringFieldUpdateOperationsInput | Null Yes

Output Types

Wallet

Name Type Nullable
id Int Yes
address String Yes
realmsL1 Realm[] No
realmsL2 Realm[] No
realmsSettled Realm[] No
_count WalletCountOutputType Yes

Realm

Name Type Nullable
id Int Yes
realmId Int Yes
name String No
wallet Wallet No
owner String No
bridgedOwner String No
ownerL2 String No
walletL2 Wallet No
settledOwner String No
walletSettled Wallet No
wonder String No
rarityRank Int Yes
rarityScore Float Yes
imageUrl String Yes
relic Relic No
orderType OrderType No
buildings Building[] No
resources Resource[] No
relicsOwned Relic[] No
traits RealmTrait[] No
squad Troop[] No
lastAttacked DateTime No
lastClaimTime DateTime No
lastTick DateTime No
lastVaultTime DateTime No
longitude Float Yes
latitude Float Yes
ownArmies Army[] No
_count RealmCountOutputType Yes

Building

Name Type Nullable
id Int Yes
buildingId Int Yes
realmId Int No
eventId String Yes
buildingIntegrity Int Yes
realm Realm No
builds String No

Food

Name Type Nullable
id Int Yes
realmId Int Yes
buildingId Int Yes
eventId String Yes
qty Int Yes
harvests Int Yes
createdAt DateTime Yes
updatedAt DateTime Yes

Relic

Name Type Nullable
realmId Int Yes
originRealm Realm No
heldByRealm Int Yes
realmHolder Realm No
isAnnexed Boolean Yes

BuildingRealmTraitConstraint

Name Type Nullable
buildingId Int Yes
traitType RealmTraitType Yes
max Int Yes

Resource

Name Type Nullable
id Int Yes
resourceId Int Yes
realmId Int No
realm Realm No
labor Labor No
level Int Yes
upgrades String No

Labor

Name Type Nullable
id Int Yes
realmId Int Yes
resourceId Int Yes
vaultBalance DateTime No
balance DateTime No
lastUpdate DateTime No
lastEventId String No
qtyBuilt Int Yes
createdAt DateTime Yes
updatedAt DateTime Yes
resoure Resource Yes

WalletBalance

Name Type Nullable
id Int Yes
address String Yes
tokenId Int Yes
amount String Yes
lastEventId String No

RealmTrait

Name Type Nullable
type RealmTraitType Yes
qty Int Yes
realmId Int Yes
realm Realm No

Troop

Name Type Nullable
realmId Int Yes
troopId Int Yes
index Int Yes
type Int Yes
tier Int Yes
building Int Yes
agility Int Yes
attack Int Yes
armor Int Yes
vitality Int Yes
wisdom Int Yes
squadSlot Int Yes
timestamp DateTime No
Realm Realm Yes

Desiege

Name Type Nullable
id Int Yes
gameId Int Yes
winner Int No
attackedTokens Int No
defendedTokens Int No
damageInflicted Int No
eventIndexed String No
initialHealth Int No
startBlock Int Yes
endBlock Int Yes
startedOn DateTime No

DesiegeAction

Name Type Nullable
id Int Yes
gameId Int Yes
account String Yes
amount Int Yes
amountBoosted Int Yes
tokenOffset Int Yes

Event

Name Type Nullable
id Int Yes
eventId String Yes
blockNumber Int Yes
transactionNumber Int Yes
chainId String Yes
contract String Yes
name String Yes
parameters String No
keys String No
timestamp DateTime Yes
txHash String Yes
status Int Yes

LastIndexedEvent

Name Type Nullable
moduleName String Yes
eventId String Yes

LoreEntity

Name Type Nullable
id Int Yes
owner String No
ownerDisplayName String No
kind Int Yes
eventIndexed String No
revisions LoreEntityRevision[] No
_count LoreEntityCountOutputType Yes

LoreEntityRevision

Name Type Nullable
id Int Yes
revisionNumber Int Yes
arweaveId String Yes
title String No
markdown String No
excerpt String No
media_url String No
createdAt DateTime No
entity LoreEntity Yes
entityId Int Yes
eventIndexed String No
pois LorePoisOnEntityRevisions[] No
props LorePropsOnEntityRevisions[] No
_count LoreEntityRevisionCountOutputType Yes

LorePOI

Name Type Nullable
id Int Yes
name String Yes
assetType String No
entities LorePoisOnEntityRevisions[] No
_count LorePOICountOutputType Yes

LoreProp

Name Type Nullable
id Int Yes
name String Yes
entities LorePropsOnEntityRevisions[] No
_count LorePropCountOutputType Yes

LorePoisOnEntityRevisions

Name Type Nullable
id Int Yes
entityRevision LoreEntityRevision Yes
entityRevisionId Int Yes
poi LorePOI Yes
poiId Int Yes
assetId String No

LorePropsOnEntityRevisions

Name Type Nullable
id Int Yes
entityRevision LoreEntityRevision Yes
entityRevisionId Int Yes
prop LoreProp Yes
propId Int Yes
value String No

ExchangeRate

Name Type Nullable
date String Yes
hour Int Yes
tokenId Int Yes
amount String Yes
buyAmount String Yes
sellAmount String Yes
currencyReserve String Yes
tokenReserve String Yes
lpAmount String Yes

RealmHistory

Name Type Nullable
id Int Yes
eventId String Yes
eventType String Yes
realmId Int Yes
bastionId Int Yes
realmOwner String Yes
realmName String Yes
realmOrder OrderType No
data Json Yes
timestamp DateTime Yes
transactionHash String Yes

CombatHistory

Name Type Nullable
id Int Yes
eventId String Yes
eventType String Yes
attackRealmId Int Yes
attackRealmOwner String Yes
attackSquad Json Yes
defendRealmId Int Yes
defendRealmOwner String Yes
defendSquad Json Yes
timestamp DateTime Yes
transactionHash String Yes
outcome Int Yes
attackType Int Yes
hitPoints Int Yes

ResourceTransfer

Name Type Nullable
resourceId Int Yes
eventId String Yes
blockNumber Int Yes
transactionNumber Int Yes
operatorAddress String Yes
fromAddress String Yes
toAddress String Yes
amount String Yes
amountValue Decimal Yes
transactionHash String Yes
timestamp DateTime Yes

LordTransfer

Name Type Nullable
eventId String Yes
blockNumber Int Yes
transactionNumber Int Yes
fromAddress String Yes
toAddress String Yes
amount String Yes
amountValue Decimal Yes
transactionHash String Yes
timestamp DateTime Yes

Army

Name Type Nullable
realmId Int Yes
armyId Int Yes
orderId Int Yes
destinationRealmId Int Yes
destinationArrivalTime DateTime No
armyPacked Int Yes
lastAttacked DateTime No
xp Int Yes
level Int Yes
callSign Int Yes
lightCavalryQty Int Yes
lightCavalryHealth Int Yes
heavyCavalryQty Int Yes
heavyCavalryHealth Int Yes
archerQty Int Yes
archerHealth Int Yes
longbowQty Int Yes
longbowHealth Int Yes
mageQty Int Yes
mageHealth Int Yes
arcanistQty Int Yes
arcanistHealth Int Yes
lightInfantryQty Int Yes
lightInfantryHealth Int Yes
heavyInfantryQty Int Yes
heavyInfantryHealth Int Yes
bastionId Int Yes
bastionPastLocation Int Yes
bastionCurrentLocation Int Yes
bastionArrivalBlock Int Yes
ownRealm Realm Yes

Bastion

Name Type Nullable
bastionId Int Yes
longitude Float Yes
latitude Float Yes

BastionLocation

Name Type Nullable
bastionId Int Yes
locationId Int Yes
defendingOrderId Int Yes
takenBlock Int Yes

Travel

Name Type Nullable
eventId String Yes
contractId Int Yes
tokenId Int Yes
nestedId Int Yes
locationContractId Int Yes
locationTokenId Int Yes
locationNestedId Int Yes
destinationContractId Int Yes
destinationTokenId Int Yes
destinationNestedId Int Yes
destinationArrivalTime DateTime Yes
timestamp DateTime Yes

ExchangeEvent

Name Type Nullable
eventId String Yes
type ExchangeEventType Yes
resourceId Int Yes
address String Yes
currencyAmount String Yes
currencyAmountValue Decimal Yes
resourceAmount String Yes
resourceAmountValue Decimal Yes
timestamp DateTime Yes

BuildArmyEvent

Name Type Nullable
eventId String Yes
realmId Int Yes
armyId Int Yes
lightCavalryQty Int Yes
lightCavalryHealth Int Yes
heavyCavalryQty Int Yes
heavyCavalryHealth Int Yes
archerQty Int Yes
archerHealth Int Yes
longbowQty Int Yes
longbowHealth Int Yes
mageQty Int Yes
mageHealth Int Yes
arcanistQty Int Yes
arcanistHealth Int Yes
lightInfantryQty Int Yes
lightInfantryHealth Int Yes
heavyInfantryQty Int Yes
heavyInfantryHealth Int Yes
timestamp DateTime Yes

BuildBuildingEvent

Name Type Nullable
eventId String Yes
buildingId Int Yes
realmId Int Yes
buildingIntegrity Int Yes
count Int Yes
timestamp DateTime Yes


WalletGroupByOutputType

Name Type Nullable
id Int Yes
address String Yes
_count WalletCountAggregateOutputType No
_avg WalletAvgAggregateOutputType No
_sum WalletSumAggregateOutputType No
_min WalletMinAggregateOutputType No
_max WalletMaxAggregateOutputType No


RealmGroupByOutputType

Name Type Nullable
id Int Yes
realmId Int Yes
name String No
owner String No
bridgedOwner String No
ownerL2 String No
settledOwner String No
wonder String No
rarityRank Int Yes
rarityScore Float Yes
imageUrl String Yes
orderType OrderType No
lastAttacked DateTime No
lastClaimTime DateTime No
lastTick DateTime No
lastVaultTime DateTime No
longitude Float Yes
latitude Float Yes
_count RealmCountAggregateOutputType No
_avg RealmAvgAggregateOutputType No
_sum RealmSumAggregateOutputType No
_min RealmMinAggregateOutputType No
_max RealmMaxAggregateOutputType No


BuildingGroupByOutputType

Name Type Nullable
id Int Yes
buildingId Int Yes
realmId Int No
eventId String Yes
buildingIntegrity Int Yes
builds String No
_count BuildingCountAggregateOutputType No
_avg BuildingAvgAggregateOutputType No
_sum BuildingSumAggregateOutputType No
_min BuildingMinAggregateOutputType No
_max BuildingMaxAggregateOutputType No


FoodGroupByOutputType

Name Type Nullable
id Int Yes
realmId Int Yes
buildingId Int Yes
eventId String Yes
qty Int Yes
harvests Int Yes
createdAt DateTime Yes
updatedAt DateTime Yes
_count FoodCountAggregateOutputType No
_avg FoodAvgAggregateOutputType No
_sum FoodSumAggregateOutputType No
_min FoodMinAggregateOutputType No
_max FoodMaxAggregateOutputType No


RelicGroupByOutputType

Name Type Nullable
realmId Int Yes
heldByRealm Int Yes
isAnnexed Boolean Yes
_count RelicCountAggregateOutputType No
_avg RelicAvgAggregateOutputType No
_sum RelicSumAggregateOutputType No
_min RelicMinAggregateOutputType No
_max RelicMaxAggregateOutputType No




ResourceGroupByOutputType

Name Type Nullable
id Int Yes
resourceId Int Yes
realmId Int No
level Int Yes
upgrades String No
_count ResourceCountAggregateOutputType No
_avg ResourceAvgAggregateOutputType No
_sum ResourceSumAggregateOutputType No
_min ResourceMinAggregateOutputType No
_max ResourceMaxAggregateOutputType No


LaborGroupByOutputType

Name Type Nullable
id Int Yes
realmId Int Yes
resourceId Int Yes
vaultBalance DateTime No
balance DateTime No
lastUpdate DateTime No
lastEventId String No
qtyBuilt Int Yes
createdAt DateTime Yes
updatedAt DateTime Yes
_count LaborCountAggregateOutputType No
_avg LaborAvgAggregateOutputType No
_sum LaborSumAggregateOutputType No
_min LaborMinAggregateOutputType No
_max LaborMaxAggregateOutputType No


WalletBalanceGroupByOutputType

Name Type Nullable
id Int Yes
address String Yes
tokenId Int Yes
amount String Yes
lastEventId String No
_count WalletBalanceCountAggregateOutputType No
_avg WalletBalanceAvgAggregateOutputType No
_sum WalletBalanceSumAggregateOutputType No
_min WalletBalanceMinAggregateOutputType No
_max WalletBalanceMaxAggregateOutputType No


RealmTraitGroupByOutputType

Name Type Nullable
type RealmTraitType Yes
qty Int Yes
realmId Int Yes
_count RealmTraitCountAggregateOutputType No
_avg RealmTraitAvgAggregateOutputType No
_sum RealmTraitSumAggregateOutputType No
_min RealmTraitMinAggregateOutputType No
_max RealmTraitMaxAggregateOutputType No


TroopGroupByOutputType

Name Type Nullable
realmId Int Yes
troopId Int Yes
index Int Yes
type Int Yes
tier Int Yes
building Int Yes
agility Int Yes
attack Int Yes
armor Int Yes
vitality Int Yes
wisdom Int Yes
squadSlot Int Yes
timestamp DateTime No
_count TroopCountAggregateOutputType No
_avg TroopAvgAggregateOutputType No
_sum TroopSumAggregateOutputType No
_min TroopMinAggregateOutputType No
_max TroopMaxAggregateOutputType No


DesiegeGroupByOutputType

Name Type Nullable
id Int Yes
gameId Int Yes
winner Int No
attackedTokens Int No
defendedTokens Int No
damageInflicted Int No
eventIndexed String No
initialHealth Int No
startBlock Int Yes
endBlock Int Yes
startedOn DateTime No
_count DesiegeCountAggregateOutputType No
_avg DesiegeAvgAggregateOutputType No
_sum DesiegeSumAggregateOutputType No
_min DesiegeMinAggregateOutputType No
_max DesiegeMaxAggregateOutputType No


DesiegeActionGroupByOutputType

Name Type Nullable
id Int Yes
gameId Int Yes
account String Yes
amount Int Yes
amountBoosted Int Yes
tokenOffset Int Yes
_count DesiegeActionCountAggregateOutputType No
_avg DesiegeActionAvgAggregateOutputType No
_sum DesiegeActionSumAggregateOutputType No
_min DesiegeActionMinAggregateOutputType No
_max DesiegeActionMaxAggregateOutputType No


EventGroupByOutputType

Name Type Nullable
id Int Yes
eventId String Yes
blockNumber Int Yes
transactionNumber Int Yes
chainId String Yes
contract String Yes
name String Yes
parameters String No
keys String No
timestamp DateTime Yes
txHash String Yes
status Int Yes
_count EventCountAggregateOutputType No
_avg EventAvgAggregateOutputType No
_sum EventSumAggregateOutputType No
_min EventMinAggregateOutputType No
_max EventMaxAggregateOutputType No


LastIndexedEventGroupByOutputType

Name Type Nullable
moduleName String Yes
eventId String Yes
_count LastIndexedEventCountAggregateOutputType No
_min LastIndexedEventMinAggregateOutputType No
_max LastIndexedEventMaxAggregateOutputType No


LoreEntityGroupByOutputType

Name Type Nullable
id Int Yes
owner String No
ownerDisplayName String No
kind Int Yes
eventIndexed String No
_count LoreEntityCountAggregateOutputType No
_avg LoreEntityAvgAggregateOutputType No
_sum LoreEntitySumAggregateOutputType No
_min LoreEntityMinAggregateOutputType No
_max LoreEntityMaxAggregateOutputType No


LoreEntityRevisionGroupByOutputType

Name Type Nullable
id Int Yes
revisionNumber Int Yes
arweaveId String Yes
title String No
markdown String No
excerpt String No
media_url String No
createdAt DateTime No
entityId Int Yes
eventIndexed String No
_count LoreEntityRevisionCountAggregateOutputType No
_avg LoreEntityRevisionAvgAggregateOutputType No
_sum LoreEntityRevisionSumAggregateOutputType No
_min LoreEntityRevisionMinAggregateOutputType No
_max LoreEntityRevisionMaxAggregateOutputType No


LorePOIGroupByOutputType

Name Type Nullable
id Int Yes
name String Yes
assetType String No
_count LorePOICountAggregateOutputType No
_avg LorePOIAvgAggregateOutputType No
_sum LorePOISumAggregateOutputType No
_min LorePOIMinAggregateOutputType No
_max LorePOIMaxAggregateOutputType No


LorePropGroupByOutputType

Name Type Nullable
id Int Yes
name String Yes
_count LorePropCountAggregateOutputType No
_avg LorePropAvgAggregateOutputType No
_sum LorePropSumAggregateOutputType No
_min LorePropMinAggregateOutputType No
_max LorePropMaxAggregateOutputType No


LorePoisOnEntityRevisionsGroupByOutputType

Name Type Nullable
id Int Yes
entityRevisionId Int Yes
poiId Int Yes
assetId String No
_count LorePoisOnEntityRevisionsCountAggregateOutputType No
_avg LorePoisOnEntityRevisionsAvgAggregateOutputType No
_sum LorePoisOnEntityRevisionsSumAggregateOutputType No
_min LorePoisOnEntityRevisionsMinAggregateOutputType No
_max LorePoisOnEntityRevisionsMaxAggregateOutputType No


LorePropsOnEntityRevisionsGroupByOutputType

Name Type Nullable
id Int Yes
entityRevisionId Int Yes
propId Int Yes
value String No
_count LorePropsOnEntityRevisionsCountAggregateOutputType No
_avg LorePropsOnEntityRevisionsAvgAggregateOutputType No
_sum LorePropsOnEntityRevisionsSumAggregateOutputType No
_min LorePropsOnEntityRevisionsMinAggregateOutputType No
_max LorePropsOnEntityRevisionsMaxAggregateOutputType No


ExchangeRateGroupByOutputType

Name Type Nullable
date String Yes
hour Int Yes
tokenId Int Yes
amount String Yes
buyAmount String Yes
sellAmount String Yes
currencyReserve String Yes
tokenReserve String Yes
lpAmount String Yes
_count ExchangeRateCountAggregateOutputType No
_avg ExchangeRateAvgAggregateOutputType No
_sum ExchangeRateSumAggregateOutputType No
_min ExchangeRateMinAggregateOutputType No
_max ExchangeRateMaxAggregateOutputType No


RealmHistoryGroupByOutputType

Name Type Nullable
id Int Yes
eventId String Yes
eventType String Yes
realmId Int Yes
bastionId Int Yes
realmOwner String Yes
realmName String Yes
realmOrder OrderType No
data Json Yes
timestamp DateTime Yes
transactionHash String Yes
_count RealmHistoryCountAggregateOutputType No
_avg RealmHistoryAvgAggregateOutputType No
_sum RealmHistorySumAggregateOutputType No
_min RealmHistoryMinAggregateOutputType No
_max RealmHistoryMaxAggregateOutputType No


CombatHistoryGroupByOutputType

Name Type Nullable
id Int Yes
eventId String Yes
eventType String Yes
attackRealmId Int Yes
attackRealmOwner String Yes
attackSquad Json Yes
defendRealmId Int Yes
defendRealmOwner String Yes
defendSquad Json Yes
timestamp DateTime Yes
transactionHash String Yes
outcome Int Yes
attackType Int Yes
hitPoints Int Yes
_count CombatHistoryCountAggregateOutputType No
_avg CombatHistoryAvgAggregateOutputType No
_sum CombatHistorySumAggregateOutputType No
_min CombatHistoryMinAggregateOutputType No
_max CombatHistoryMaxAggregateOutputType No


ResourceTransferGroupByOutputType

Name Type Nullable
resourceId Int Yes
eventId String Yes
blockNumber Int Yes
transactionNumber Int Yes
operatorAddress String Yes
fromAddress String Yes
toAddress String Yes
amount String Yes
amountValue Decimal Yes
transactionHash String Yes
timestamp DateTime Yes
_count ResourceTransferCountAggregateOutputType No
_avg ResourceTransferAvgAggregateOutputType No
_sum ResourceTransferSumAggregateOutputType No
_min ResourceTransferMinAggregateOutputType No
_max ResourceTransferMaxAggregateOutputType No


LordTransferGroupByOutputType

Name Type Nullable
eventId String Yes
blockNumber Int Yes
transactionNumber Int Yes
fromAddress String Yes
toAddress String Yes
amount String Yes
amountValue Decimal Yes
transactionHash String Yes
timestamp DateTime Yes
_count LordTransferCountAggregateOutputType No
_avg LordTransferAvgAggregateOutputType No
_sum LordTransferSumAggregateOutputType No
_min LordTransferMinAggregateOutputType No
_max LordTransferMaxAggregateOutputType No


ArmyGroupByOutputType

Name Type Nullable
realmId Int Yes
armyId Int Yes
orderId Int Yes
destinationRealmId Int Yes
destinationArrivalTime DateTime No
armyPacked Int Yes
lastAttacked DateTime No
xp Int Yes
level Int Yes
callSign Int Yes
lightCavalryQty Int Yes
lightCavalryHealth Int Yes
heavyCavalryQty Int Yes
heavyCavalryHealth Int Yes
archerQty Int Yes
archerHealth Int Yes
longbowQty Int Yes
longbowHealth Int Yes
mageQty Int Yes
mageHealth Int Yes
arcanistQty Int Yes
arcanistHealth Int Yes
lightInfantryQty Int Yes
lightInfantryHealth Int Yes
heavyInfantryQty Int Yes
heavyInfantryHealth Int Yes
bastionId Int Yes
bastionPastLocation Int Yes
bastionCurrentLocation Int Yes
bastionArrivalBlock Int Yes
_count ArmyCountAggregateOutputType No
_avg ArmyAvgAggregateOutputType No
_sum ArmySumAggregateOutputType No
_min ArmyMinAggregateOutputType No
_max ArmyMaxAggregateOutputType No


BastionGroupByOutputType

Name Type Nullable
bastionId Int Yes
longitude Float Yes
latitude Float Yes
_count BastionCountAggregateOutputType No
_avg BastionAvgAggregateOutputType No
_sum BastionSumAggregateOutputType No
_min BastionMinAggregateOutputType No
_max BastionMaxAggregateOutputType No


BastionLocationGroupByOutputType

Name Type Nullable
bastionId Int Yes
locationId Int Yes
defendingOrderId Int Yes
takenBlock Int Yes
_count BastionLocationCountAggregateOutputType No
_avg BastionLocationAvgAggregateOutputType No
_sum BastionLocationSumAggregateOutputType No
_min BastionLocationMinAggregateOutputType No
_max BastionLocationMaxAggregateOutputType No


TravelGroupByOutputType

Name Type Nullable
eventId String Yes
contractId Int Yes
tokenId Int Yes
nestedId Int Yes
locationContractId Int Yes
locationTokenId Int Yes
locationNestedId Int Yes
destinationContractId Int Yes
destinationTokenId Int Yes
destinationNestedId Int Yes
destinationArrivalTime DateTime Yes
timestamp DateTime Yes
_count TravelCountAggregateOutputType No
_avg TravelAvgAggregateOutputType No
_sum TravelSumAggregateOutputType No
_min TravelMinAggregateOutputType No
_max TravelMaxAggregateOutputType No


ExchangeEventGroupByOutputType

Name Type Nullable
eventId String Yes
type ExchangeEventType Yes
resourceId Int Yes
address String Yes
currencyAmount String Yes
currencyAmountValue Decimal Yes
resourceAmount String Yes
resourceAmountValue Decimal Yes
timestamp DateTime Yes
_count ExchangeEventCountAggregateOutputType No
_avg ExchangeEventAvgAggregateOutputType No
_sum ExchangeEventSumAggregateOutputType No
_min ExchangeEventMinAggregateOutputType No
_max ExchangeEventMaxAggregateOutputType No


BuildArmyEventGroupByOutputType

Name Type Nullable
eventId String Yes
realmId Int Yes
armyId Int Yes
lightCavalryQty Int Yes
lightCavalryHealth Int Yes
heavyCavalryQty Int Yes
heavyCavalryHealth Int Yes
archerQty Int Yes
archerHealth Int Yes
longbowQty Int Yes
longbowHealth Int Yes
mageQty Int Yes
mageHealth Int Yes
arcanistQty Int Yes
arcanistHealth Int Yes
lightInfantryQty Int Yes
lightInfantryHealth Int Yes
heavyInfantryQty Int Yes
heavyInfantryHealth Int Yes
timestamp DateTime Yes
_count BuildArmyEventCountAggregateOutputType No
_avg BuildArmyEventAvgAggregateOutputType No
_sum BuildArmyEventSumAggregateOutputType No
_min BuildArmyEventMinAggregateOutputType No
_max BuildArmyEventMaxAggregateOutputType No


BuildBuildingEventGroupByOutputType

Name Type Nullable
eventId String Yes
buildingId Int Yes
realmId Int Yes
buildingIntegrity Int Yes
count Int Yes
timestamp DateTime Yes
_count BuildBuildingEventCountAggregateOutputType No
_avg BuildBuildingEventAvgAggregateOutputType No
_sum BuildBuildingEventSumAggregateOutputType No
_min BuildBuildingEventMinAggregateOutputType No
_max BuildBuildingEventMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

WalletCountOutputType

Name Type Nullable
realmsL1 Int Yes
realmsL2 Int Yes
realmsSettled Int Yes

WalletCountAggregateOutputType

Name Type Nullable
id Int Yes
address Int Yes
_all Int Yes

WalletAvgAggregateOutputType

Name Type Nullable
id Float No

WalletSumAggregateOutputType

Name Type Nullable
id Int No

WalletMinAggregateOutputType

Name Type Nullable
id Int No
address String No

WalletMaxAggregateOutputType

Name Type Nullable
id Int No
address String No

RealmCountOutputType

Name Type Nullable
buildings Int Yes
resources Int Yes
relicsOwned Int Yes
traits Int Yes
squad Int Yes
ownArmies Int Yes

RealmCountAggregateOutputType

Name Type Nullable
id Int Yes
realmId Int Yes
name Int Yes
owner Int Yes
bridgedOwner Int Yes
ownerL2 Int Yes
settledOwner Int Yes
wonder Int Yes
rarityRank Int Yes
rarityScore Int Yes
imageUrl Int Yes
orderType Int Yes
lastAttacked Int Yes
lastClaimTime Int Yes
lastTick Int Yes
lastVaultTime Int Yes
longitude Int Yes
latitude Int Yes
_all Int Yes

RealmAvgAggregateOutputType

Name Type Nullable
id Float No
realmId Float No
rarityRank Float No
rarityScore Float No
longitude Float No
latitude Float No

RealmSumAggregateOutputType

Name Type Nullable
id Int No
realmId Int No
rarityRank Int No
rarityScore Float No
longitude Float No
latitude Float No

RealmMinAggregateOutputType

Name Type Nullable
id Int No
realmId Int No
name String No
owner String No
bridgedOwner String No
ownerL2 String No
settledOwner String No
wonder String No
rarityRank Int No
rarityScore Float No
imageUrl String No
orderType OrderType No
lastAttacked DateTime No
lastClaimTime DateTime No
lastTick DateTime No
lastVaultTime DateTime No
longitude Float No
latitude Float No

RealmMaxAggregateOutputType

Name Type Nullable
id Int No
realmId Int No
name String No
owner String No
bridgedOwner String No
ownerL2 String No
settledOwner String No
wonder String No
rarityRank Int No
rarityScore Float No
imageUrl String No
orderType OrderType No
lastAttacked DateTime No
lastClaimTime DateTime No
lastTick DateTime No
lastVaultTime DateTime No
longitude Float No
latitude Float No

BuildingCountAggregateOutputType

Name Type Nullable
id Int Yes
buildingId Int Yes
realmId Int Yes
eventId Int Yes
buildingIntegrity Int Yes
builds Int Yes
_all Int Yes

BuildingAvgAggregateOutputType

Name Type Nullable
id Float No
buildingId Float No
realmId Float No
buildingIntegrity Float No

BuildingSumAggregateOutputType

Name Type Nullable
id Int No
buildingId Int No
realmId Int No
buildingIntegrity Int No

BuildingMinAggregateOutputType

Name Type Nullable
id Int No
buildingId Int No
realmId Int No
eventId String No
buildingIntegrity Int No

BuildingMaxAggregateOutputType

Name Type Nullable
id Int No
buildingId Int No
realmId Int No
eventId String No
buildingIntegrity Int No

FoodCountAggregateOutputType

Name Type Nullable
id Int Yes
realmId Int Yes
buildingId Int Yes
eventId Int Yes
qty Int Yes
harvests Int Yes
createdAt Int Yes
updatedAt Int Yes
_all Int Yes

FoodAvgAggregateOutputType

Name Type Nullable
id Float No
realmId Float No
buildingId Float No
qty Float No
harvests Float No

FoodSumAggregateOutputType

Name Type Nullable
id Int No
realmId Int No
buildingId Int No
qty Int No
harvests Int No

FoodMinAggregateOutputType

Name Type Nullable
id Int No
realmId Int No
buildingId Int No
eventId String No
qty Int No
harvests Int No
createdAt DateTime No
updatedAt DateTime No

FoodMaxAggregateOutputType

Name Type Nullable
id Int No
realmId Int No
buildingId Int No
eventId String No
qty Int No
harvests Int No
createdAt DateTime No
updatedAt DateTime No

RelicCountAggregateOutputType

Name Type Nullable
realmId Int Yes
heldByRealm Int Yes
isAnnexed Int Yes
_all Int Yes

RelicAvgAggregateOutputType

Name Type Nullable
realmId Float No
heldByRealm Float No

RelicSumAggregateOutputType

Name Type Nullable
realmId Int No
heldByRealm Int No

RelicMinAggregateOutputType

Name Type Nullable
realmId Int No
heldByRealm Int No
isAnnexed Boolean No

RelicMaxAggregateOutputType

Name Type Nullable
realmId Int No
heldByRealm Int No
isAnnexed Boolean No

BuildingRealmTraitConstraintCountAggregateOutputType

Name Type Nullable
buildingId Int Yes
traitType Int Yes
max Int Yes
_all Int Yes

BuildingRealmTraitConstraintAvgAggregateOutputType

Name Type Nullable
buildingId Float No
max Float No

BuildingRealmTraitConstraintSumAggregateOutputType

Name Type Nullable
buildingId Int No
max Int No

BuildingRealmTraitConstraintMinAggregateOutputType

Name Type Nullable
buildingId Int No
traitType RealmTraitType No
max Int No

BuildingRealmTraitConstraintMaxAggregateOutputType

Name Type Nullable
buildingId Int No
traitType RealmTraitType No
max Int No

ResourceCountAggregateOutputType

Name Type Nullable
id Int Yes
resourceId Int Yes
realmId Int Yes
level Int Yes
upgrades Int Yes
_all Int Yes

ResourceAvgAggregateOutputType

Name Type Nullable
id Float No
resourceId Float No
realmId Float No
level Float No

ResourceSumAggregateOutputType

Name Type Nullable
id Int No
resourceId Int No
realmId Int No
level Int No

ResourceMinAggregateOutputType

Name Type Nullable
id Int No
resourceId Int No
realmId Int No
level Int No

ResourceMaxAggregateOutputType

Name Type Nullable
id Int No
resourceId Int No
realmId Int No
level Int No

LaborCountAggregateOutputType

Name Type Nullable
id Int Yes
realmId Int Yes
resourceId Int Yes
vaultBalance Int Yes
balance Int Yes
lastUpdate Int Yes
lastEventId Int Yes
qtyBuilt Int Yes
createdAt Int Yes
updatedAt Int Yes
_all Int Yes

LaborAvgAggregateOutputType

Name Type Nullable
id Float No
realmId Float No
resourceId Float No
qtyBuilt Float No

LaborSumAggregateOutputType

Name Type Nullable
id Int No
realmId Int No
resourceId Int No
qtyBuilt Int No

LaborMinAggregateOutputType

Name Type Nullable
id Int No
realmId Int No
resourceId Int No
vaultBalance DateTime No
balance DateTime No
lastUpdate DateTime No
lastEventId String No
qtyBuilt Int No
createdAt DateTime No
updatedAt DateTime No

LaborMaxAggregateOutputType

Name Type Nullable
id Int No
realmId Int No
resourceId Int No
vaultBalance DateTime No
balance DateTime No
lastUpdate DateTime No
lastEventId String No
qtyBuilt Int No
createdAt DateTime No
updatedAt DateTime No

WalletBalanceCountAggregateOutputType

Name Type Nullable
id Int Yes
address Int Yes
tokenId Int Yes
amount Int Yes
lastEventId Int Yes
_all Int Yes

WalletBalanceAvgAggregateOutputType

Name Type Nullable
id Float No
tokenId Float No

WalletBalanceSumAggregateOutputType

Name Type Nullable
id Int No
tokenId Int No

WalletBalanceMinAggregateOutputType

Name Type Nullable
id Int No
address String No
tokenId Int No
amount String No
lastEventId String No

WalletBalanceMaxAggregateOutputType

Name Type Nullable
id Int No
address String No
tokenId Int No
amount String No
lastEventId String No

RealmTraitCountAggregateOutputType

Name Type Nullable
type Int Yes
qty Int Yes
realmId Int Yes
_all Int Yes

RealmTraitAvgAggregateOutputType

Name Type Nullable
qty Float No
realmId Float No

RealmTraitSumAggregateOutputType

Name Type Nullable
qty Int No
realmId Int No

RealmTraitMinAggregateOutputType

Name Type Nullable
type RealmTraitType No
qty Int No
realmId Int No

RealmTraitMaxAggregateOutputType

Name Type Nullable
type RealmTraitType No
qty Int No
realmId Int No

TroopCountAggregateOutputType

Name Type Nullable
realmId Int Yes
troopId Int Yes
index Int Yes
type Int Yes
tier Int Yes
building Int Yes
agility Int Yes
attack Int Yes
armor Int Yes
vitality Int Yes
wisdom Int Yes
squadSlot Int Yes
timestamp Int Yes
_all Int Yes

TroopAvgAggregateOutputType

Name Type Nullable
realmId Float No
troopId Float No
index Float No
type Float No
tier Float No
building Float No
agility Float No
attack Float No
armor Float No
vitality Float No
wisdom Float No
squadSlot Float No

TroopSumAggregateOutputType

Name Type Nullable
realmId Int No
troopId Int No
index Int No
type Int No
tier Int No
building Int No
agility Int No
attack Int No
armor Int No
vitality Int No
wisdom Int No
squadSlot Int No

TroopMinAggregateOutputType

Name Type Nullable
realmId Int No
troopId Int No
index Int No
type Int No
tier Int No
building Int No
agility Int No
attack Int No
armor Int No
vitality Int No
wisdom Int No
squadSlot Int No
timestamp DateTime No

TroopMaxAggregateOutputType

Name Type Nullable
realmId Int No
troopId Int No
index Int No
type Int No
tier Int No
building Int No
agility Int No
attack Int No
armor Int No
vitality Int No
wisdom Int No
squadSlot Int No
timestamp DateTime No

DesiegeCountAggregateOutputType

Name Type Nullable
id Int Yes
gameId Int Yes
winner Int Yes
attackedTokens Int Yes
defendedTokens Int Yes
damageInflicted Int Yes
eventIndexed Int Yes
initialHealth Int Yes
startBlock Int Yes
endBlock Int Yes
startedOn Int Yes
_all Int Yes

DesiegeAvgAggregateOutputType

Name Type Nullable
id Float No
gameId Float No
winner Float No
attackedTokens Float No
defendedTokens Float No
damageInflicted Float No
initialHealth Float No
startBlock Float No
endBlock Float No

DesiegeSumAggregateOutputType

Name Type Nullable
id Int No
gameId Int No
winner Int No
attackedTokens Int No
defendedTokens Int No
damageInflicted Int No
initialHealth Int No
startBlock Int No
endBlock Int No

DesiegeMinAggregateOutputType

Name Type Nullable
id Int No
gameId Int No
winner Int No
attackedTokens Int No
defendedTokens Int No
damageInflicted Int No
eventIndexed String No
initialHealth Int No
startBlock Int No
endBlock Int No
startedOn DateTime No

DesiegeMaxAggregateOutputType

Name Type Nullable
id Int No
gameId Int No
winner Int No
attackedTokens Int No
defendedTokens Int No
damageInflicted Int No
eventIndexed String No
initialHealth Int No
startBlock Int No
endBlock Int No
startedOn DateTime No

DesiegeActionCountAggregateOutputType

Name Type Nullable
id Int Yes
gameId Int Yes
account Int Yes
amount Int Yes
amountBoosted Int Yes
tokenOffset Int Yes
_all Int Yes

DesiegeActionAvgAggregateOutputType

Name Type Nullable
id Float No
gameId Float No
amount Float No
amountBoosted Float No
tokenOffset Float No

DesiegeActionSumAggregateOutputType

Name Type Nullable
id Int No
gameId Int No
amount Int No
amountBoosted Int No
tokenOffset Int No

DesiegeActionMinAggregateOutputType

Name Type Nullable
id Int No
gameId Int No
account String No
amount Int No
amountBoosted Int No
tokenOffset Int No

DesiegeActionMaxAggregateOutputType

Name Type Nullable
id Int No
gameId Int No
account String No
amount Int No
amountBoosted Int No
tokenOffset Int No

EventCountAggregateOutputType

Name Type Nullable
id Int Yes
eventId Int Yes
blockNumber Int Yes
transactionNumber Int Yes
chainId Int Yes
contract Int Yes
name Int Yes
parameters Int Yes
keys Int Yes
timestamp Int Yes
txHash Int Yes
status Int Yes
_all Int Yes

EventAvgAggregateOutputType

Name Type Nullable
id Float No
blockNumber Float No
transactionNumber Float No
status Float No

EventSumAggregateOutputType

Name Type Nullable
id Int No
blockNumber Int No
transactionNumber Int No
status Int No

EventMinAggregateOutputType

Name Type Nullable
id Int No
eventId String No
blockNumber Int No
transactionNumber Int No
chainId String No
contract String No
name String No
timestamp DateTime No
txHash String No
status Int No

EventMaxAggregateOutputType

Name Type Nullable
id Int No
eventId String No
blockNumber Int No
transactionNumber Int No
chainId String No
contract String No
name String No
timestamp DateTime No
txHash String No
status Int No

LastIndexedEventCountAggregateOutputType

Name Type Nullable
moduleName Int Yes
eventId Int Yes
_all Int Yes

LastIndexedEventMinAggregateOutputType

Name Type Nullable
moduleName String No
eventId String No

LastIndexedEventMaxAggregateOutputType

Name Type Nullable
moduleName String No
eventId String No

LoreEntityCountOutputType

Name Type Nullable
revisions Int Yes

LoreEntityCountAggregateOutputType

Name Type Nullable
id Int Yes
owner Int Yes
ownerDisplayName Int Yes
kind Int Yes
eventIndexed Int Yes
_all Int Yes

LoreEntityAvgAggregateOutputType

Name Type Nullable
id Float No
kind Float No

LoreEntitySumAggregateOutputType

Name Type Nullable
id Int No
kind Int No

LoreEntityMinAggregateOutputType

Name Type Nullable
id Int No
owner String No
ownerDisplayName String No
kind Int No
eventIndexed String No

LoreEntityMaxAggregateOutputType

Name Type Nullable
id Int No
owner String No
ownerDisplayName String No
kind Int No
eventIndexed String No

LoreEntityRevisionCountOutputType

Name Type Nullable
pois Int Yes
props Int Yes

LoreEntityRevisionCountAggregateOutputType

Name Type Nullable
id Int Yes
revisionNumber Int Yes
arweaveId Int Yes
title Int Yes
markdown Int Yes
excerpt Int Yes
media_url Int Yes
createdAt Int Yes
entityId Int Yes
eventIndexed Int Yes
_all Int Yes

LoreEntityRevisionAvgAggregateOutputType

Name Type Nullable
id Float No
revisionNumber Float No
entityId Float No

LoreEntityRevisionSumAggregateOutputType

Name Type Nullable
id Int No
revisionNumber Int No
entityId Int No

LoreEntityRevisionMinAggregateOutputType

Name Type Nullable
id Int No
revisionNumber Int No
arweaveId String No
title String No
markdown String No
excerpt String No
media_url String No
createdAt DateTime No
entityId Int No
eventIndexed String No

LoreEntityRevisionMaxAggregateOutputType

Name Type Nullable
id Int No
revisionNumber Int No
arweaveId String No
title String No
markdown String No
excerpt String No
media_url String No
createdAt DateTime No
entityId Int No
eventIndexed String No

LorePOICountOutputType

Name Type Nullable
entities Int Yes

LorePOICountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
assetType Int Yes
_all Int Yes

LorePOIAvgAggregateOutputType

Name Type Nullable
id Float No

LorePOISumAggregateOutputType

Name Type Nullable
id Int No

LorePOIMinAggregateOutputType

Name Type Nullable
id Int No
name String No
assetType String No

LorePOIMaxAggregateOutputType

Name Type Nullable
id Int No
name String No
assetType String No

LorePropCountOutputType

Name Type Nullable
entities Int Yes

LorePropCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
_all Int Yes

LorePropAvgAggregateOutputType

Name Type Nullable
id Float No

LorePropSumAggregateOutputType

Name Type Nullable
id Int No

LorePropMinAggregateOutputType

Name Type Nullable
id Int No
name String No

LorePropMaxAggregateOutputType

Name Type Nullable
id Int No
name String No

LorePoisOnEntityRevisionsCountAggregateOutputType

Name Type Nullable
id Int Yes
entityRevisionId Int Yes
poiId Int Yes
assetId Int Yes
_all Int Yes

LorePoisOnEntityRevisionsAvgAggregateOutputType

Name Type Nullable
id Float No
entityRevisionId Float No
poiId Float No

LorePoisOnEntityRevisionsSumAggregateOutputType

Name Type Nullable
id Int No
entityRevisionId Int No
poiId Int No

LorePoisOnEntityRevisionsMinAggregateOutputType

Name Type Nullable
id Int No
entityRevisionId Int No
poiId Int No
assetId String No

LorePoisOnEntityRevisionsMaxAggregateOutputType

Name Type Nullable
id Int No
entityRevisionId Int No
poiId Int No
assetId String No

LorePropsOnEntityRevisionsCountAggregateOutputType

Name Type Nullable
id Int Yes
entityRevisionId Int Yes
propId Int Yes
value Int Yes
_all Int Yes

LorePropsOnEntityRevisionsAvgAggregateOutputType

Name Type Nullable
id Float No
entityRevisionId Float No
propId Float No

LorePropsOnEntityRevisionsSumAggregateOutputType

Name Type Nullable
id Int No
entityRevisionId Int No
propId Int No

LorePropsOnEntityRevisionsMinAggregateOutputType

Name Type Nullable
id Int No
entityRevisionId Int No
propId Int No
value String No

LorePropsOnEntityRevisionsMaxAggregateOutputType

Name Type Nullable
id Int No
entityRevisionId Int No
propId Int No
value String No

ExchangeRateCountAggregateOutputType

Name Type Nullable
date Int Yes
hour Int Yes
tokenId Int Yes
amount Int Yes
buyAmount Int Yes
sellAmount Int Yes
currencyReserve Int Yes
tokenReserve Int Yes
lpAmount Int Yes
_all Int Yes

ExchangeRateAvgAggregateOutputType

Name Type Nullable
hour Float No
tokenId Float No

ExchangeRateSumAggregateOutputType

Name Type Nullable
hour Int No
tokenId Int No

ExchangeRateMinAggregateOutputType

Name Type Nullable
date String No
hour Int No
tokenId Int No
amount String No
buyAmount String No
sellAmount String No
currencyReserve String No
tokenReserve String No
lpAmount String No

ExchangeRateMaxAggregateOutputType

Name Type Nullable
date String No
hour Int No
tokenId Int No
amount String No
buyAmount String No
sellAmount String No
currencyReserve String No
tokenReserve String No
lpAmount String No

RealmHistoryCountAggregateOutputType

Name Type Nullable
id Int Yes
eventId Int Yes
eventType Int Yes
realmId Int Yes
bastionId Int Yes
realmOwner Int Yes
realmName Int Yes
realmOrder Int Yes
data Int Yes
timestamp Int Yes
transactionHash Int Yes
_all Int Yes

RealmHistoryAvgAggregateOutputType

Name Type Nullable
id Float No
realmId Float No
bastionId Float No

RealmHistorySumAggregateOutputType

Name Type Nullable
id Int No
realmId Int No
bastionId Int No

RealmHistoryMinAggregateOutputType

Name Type Nullable
id Int No
eventId String No
eventType String No
realmId Int No
bastionId Int No
realmOwner String No
realmName String No
realmOrder OrderType No
timestamp DateTime No
transactionHash String No

RealmHistoryMaxAggregateOutputType

Name Type Nullable
id Int No
eventId String No
eventType String No
realmId Int No
bastionId Int No
realmOwner String No
realmName String No
realmOrder OrderType No
timestamp DateTime No
transactionHash String No

CombatHistoryCountAggregateOutputType

Name Type Nullable
id Int Yes
eventId Int Yes
eventType Int Yes
attackRealmId Int Yes
attackRealmOwner Int Yes
attackSquad Int Yes
defendRealmId Int Yes
defendRealmOwner Int Yes
defendSquad Int Yes
timestamp Int Yes
transactionHash Int Yes
outcome Int Yes
attackType Int Yes
hitPoints Int Yes
_all Int Yes

CombatHistoryAvgAggregateOutputType

Name Type Nullable
id Float No
attackRealmId Float No
defendRealmId Float No
outcome Float No
attackType Float No
hitPoints Float No

CombatHistorySumAggregateOutputType

Name Type Nullable
id Int No
attackRealmId Int No
defendRealmId Int No
outcome Int No
attackType Int No
hitPoints Int No

CombatHistoryMinAggregateOutputType

Name Type Nullable
id Int No
eventId String No
eventType String No
attackRealmId Int No
attackRealmOwner String No
defendRealmId Int No
defendRealmOwner String No
timestamp DateTime No
transactionHash String No
outcome Int No
attackType Int No
hitPoints Int No

CombatHistoryMaxAggregateOutputType

Name Type Nullable
id Int No
eventId String No
eventType String No
attackRealmId Int No
attackRealmOwner String No
defendRealmId Int No
defendRealmOwner String No
timestamp DateTime No
transactionHash String No
outcome Int No
attackType Int No
hitPoints Int No

ResourceTransferCountAggregateOutputType

Name Type Nullable
resourceId Int Yes
eventId Int Yes
blockNumber Int Yes
transactionNumber Int Yes
operatorAddress Int Yes
fromAddress Int Yes
toAddress Int Yes
amount Int Yes
amountValue Int Yes
transactionHash Int Yes
timestamp Int Yes
_all Int Yes

ResourceTransferAvgAggregateOutputType

Name Type Nullable
resourceId Float No
blockNumber Float No
transactionNumber Float No
amountValue Decimal No

ResourceTransferSumAggregateOutputType

Name Type Nullable
resourceId Int No
blockNumber Int No
transactionNumber Int No
amountValue Decimal No

ResourceTransferMinAggregateOutputType

Name Type Nullable
resourceId Int No
eventId String No
blockNumber Int No
transactionNumber Int No
operatorAddress String No
fromAddress String No
toAddress String No
amount String No
amountValue Decimal No
transactionHash String No
timestamp DateTime No

ResourceTransferMaxAggregateOutputType

Name Type Nullable
resourceId Int No
eventId String No
blockNumber Int No
transactionNumber Int No
operatorAddress String No
fromAddress String No
toAddress String No
amount String No
amountValue Decimal No
transactionHash String No
timestamp DateTime No

LordTransferCountAggregateOutputType

Name Type Nullable
eventId Int Yes
blockNumber Int Yes
transactionNumber Int Yes
fromAddress Int Yes
toAddress Int Yes
amount Int Yes
amountValue Int Yes
transactionHash Int Yes
timestamp Int Yes
_all Int Yes

LordTransferAvgAggregateOutputType

Name Type Nullable
blockNumber Float No
transactionNumber Float No
amountValue Decimal No

LordTransferSumAggregateOutputType

Name Type Nullable
blockNumber Int No
transactionNumber Int No
amountValue Decimal No

LordTransferMinAggregateOutputType

Name Type Nullable
eventId String No
blockNumber Int No
transactionNumber Int No
fromAddress String No
toAddress String No
amount String No
amountValue Decimal No
transactionHash String No
timestamp DateTime No

LordTransferMaxAggregateOutputType

Name Type Nullable
eventId String No
blockNumber Int No
transactionNumber Int No
fromAddress String No
toAddress String No
amount String No
amountValue Decimal No
transactionHash String No
timestamp DateTime No

ArmyCountAggregateOutputType

Name Type Nullable
realmId Int Yes
armyId Int Yes
orderId Int Yes
destinationRealmId Int Yes
destinationArrivalTime Int Yes
armyPacked Int Yes
lastAttacked Int Yes
xp Int Yes
level Int Yes
callSign Int Yes
lightCavalryQty Int Yes
lightCavalryHealth Int Yes
heavyCavalryQty Int Yes
heavyCavalryHealth Int Yes
archerQty Int Yes
archerHealth Int Yes
longbowQty Int Yes
longbowHealth Int Yes
mageQty Int Yes
mageHealth Int Yes
arcanistQty Int Yes
arcanistHealth Int Yes
lightInfantryQty Int Yes
lightInfantryHealth Int Yes
heavyInfantryQty Int Yes
heavyInfantryHealth Int Yes
bastionId Int Yes
bastionPastLocation Int Yes
bastionCurrentLocation Int Yes
bastionArrivalBlock Int Yes
_all Int Yes

ArmyAvgAggregateOutputType

Name Type Nullable
realmId Float No
armyId Float No
orderId Float No
destinationRealmId Float No
armyPacked Float No
xp Float No
level Float No
callSign Float No
lightCavalryQty Float No
lightCavalryHealth Float No
heavyCavalryQty Float No
heavyCavalryHealth Float No
archerQty Float No
archerHealth Float No
longbowQty Float No
longbowHealth Float No
mageQty Float No
mageHealth Float No
arcanistQty Float No
arcanistHealth Float No
lightInfantryQty Float No
lightInfantryHealth Float No
heavyInfantryQty Float No
heavyInfantryHealth Float No
bastionId Float No
bastionPastLocation Float No
bastionCurrentLocation Float No
bastionArrivalBlock Float No

ArmySumAggregateOutputType

Name Type Nullable
realmId Int No
armyId Int No
orderId Int No
destinationRealmId Int No
armyPacked Int No
xp Int No
level Int No
callSign Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No
bastionId Int No
bastionPastLocation Int No
bastionCurrentLocation Int No
bastionArrivalBlock Int No

ArmyMinAggregateOutputType

Name Type Nullable
realmId Int No
armyId Int No
orderId Int No
destinationRealmId Int No
destinationArrivalTime DateTime No
armyPacked Int No
lastAttacked DateTime No
xp Int No
level Int No
callSign Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No
bastionId Int No
bastionPastLocation Int No
bastionCurrentLocation Int No
bastionArrivalBlock Int No

ArmyMaxAggregateOutputType

Name Type Nullable
realmId Int No
armyId Int No
orderId Int No
destinationRealmId Int No
destinationArrivalTime DateTime No
armyPacked Int No
lastAttacked DateTime No
xp Int No
level Int No
callSign Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No
bastionId Int No
bastionPastLocation Int No
bastionCurrentLocation Int No
bastionArrivalBlock Int No

BastionCountAggregateOutputType

Name Type Nullable
bastionId Int Yes
longitude Int Yes
latitude Int Yes
_all Int Yes

BastionAvgAggregateOutputType

Name Type Nullable
bastionId Float No
longitude Float No
latitude Float No

BastionSumAggregateOutputType

Name Type Nullable
bastionId Int No
longitude Float No
latitude Float No

BastionMinAggregateOutputType

Name Type Nullable
bastionId Int No
longitude Float No
latitude Float No

BastionMaxAggregateOutputType

Name Type Nullable
bastionId Int No
longitude Float No
latitude Float No

BastionLocationCountAggregateOutputType

Name Type Nullable
bastionId Int Yes
locationId Int Yes
defendingOrderId Int Yes
takenBlock Int Yes
_all Int Yes

BastionLocationAvgAggregateOutputType

Name Type Nullable
bastionId Float No
locationId Float No
defendingOrderId Float No
takenBlock Float No

BastionLocationSumAggregateOutputType

Name Type Nullable
bastionId Int No
locationId Int No
defendingOrderId Int No
takenBlock Int No

BastionLocationMinAggregateOutputType

Name Type Nullable
bastionId Int No
locationId Int No
defendingOrderId Int No
takenBlock Int No

BastionLocationMaxAggregateOutputType

Name Type Nullable
bastionId Int No
locationId Int No
defendingOrderId Int No
takenBlock Int No

TravelCountAggregateOutputType

Name Type Nullable
eventId Int Yes
contractId Int Yes
tokenId Int Yes
nestedId Int Yes
locationContractId Int Yes
locationTokenId Int Yes
locationNestedId Int Yes
destinationContractId Int Yes
destinationTokenId Int Yes
destinationNestedId Int Yes
destinationArrivalTime Int Yes
timestamp Int Yes
_all Int Yes

TravelAvgAggregateOutputType

Name Type Nullable
contractId Float No
tokenId Float No
nestedId Float No
locationContractId Float No
locationTokenId Float No
locationNestedId Float No
destinationContractId Float No
destinationTokenId Float No
destinationNestedId Float No

TravelSumAggregateOutputType

Name Type Nullable
contractId Int No
tokenId Int No
nestedId Int No
locationContractId Int No
locationTokenId Int No
locationNestedId Int No
destinationContractId Int No
destinationTokenId Int No
destinationNestedId Int No

TravelMinAggregateOutputType

Name Type Nullable
eventId String No
contractId Int No
tokenId Int No
nestedId Int No
locationContractId Int No
locationTokenId Int No
locationNestedId Int No
destinationContractId Int No
destinationTokenId Int No
destinationNestedId Int No
destinationArrivalTime DateTime No
timestamp DateTime No

TravelMaxAggregateOutputType

Name Type Nullable
eventId String No
contractId Int No
tokenId Int No
nestedId Int No
locationContractId Int No
locationTokenId Int No
locationNestedId Int No
destinationContractId Int No
destinationTokenId Int No
destinationNestedId Int No
destinationArrivalTime DateTime No
timestamp DateTime No

ExchangeEventCountAggregateOutputType

Name Type Nullable
eventId Int Yes
type Int Yes
resourceId Int Yes
address Int Yes
currencyAmount Int Yes
currencyAmountValue Int Yes
resourceAmount Int Yes
resourceAmountValue Int Yes
timestamp Int Yes
_all Int Yes

ExchangeEventAvgAggregateOutputType

Name Type Nullable
resourceId Float No
currencyAmountValue Decimal No
resourceAmountValue Decimal No

ExchangeEventSumAggregateOutputType

Name Type Nullable
resourceId Int No
currencyAmountValue Decimal No
resourceAmountValue Decimal No

ExchangeEventMinAggregateOutputType

Name Type Nullable
eventId String No
type ExchangeEventType No
resourceId Int No
address String No
currencyAmount String No
currencyAmountValue Decimal No
resourceAmount String No
resourceAmountValue Decimal No
timestamp DateTime No

ExchangeEventMaxAggregateOutputType

Name Type Nullable
eventId String No
type ExchangeEventType No
resourceId Int No
address String No
currencyAmount String No
currencyAmountValue Decimal No
resourceAmount String No
resourceAmountValue Decimal No
timestamp DateTime No

BuildArmyEventCountAggregateOutputType

Name Type Nullable
eventId Int Yes
realmId Int Yes
armyId Int Yes
lightCavalryQty Int Yes
lightCavalryHealth Int Yes
heavyCavalryQty Int Yes
heavyCavalryHealth Int Yes
archerQty Int Yes
archerHealth Int Yes
longbowQty Int Yes
longbowHealth Int Yes
mageQty Int Yes
mageHealth Int Yes
arcanistQty Int Yes
arcanistHealth Int Yes
lightInfantryQty Int Yes
lightInfantryHealth Int Yes
heavyInfantryQty Int Yes
heavyInfantryHealth Int Yes
timestamp Int Yes
_all Int Yes

BuildArmyEventAvgAggregateOutputType

Name Type Nullable
realmId Float No
armyId Float No
lightCavalryQty Float No
lightCavalryHealth Float No
heavyCavalryQty Float No
heavyCavalryHealth Float No
archerQty Float No
archerHealth Float No
longbowQty Float No
longbowHealth Float No
mageQty Float No
mageHealth Float No
arcanistQty Float No
arcanistHealth Float No
lightInfantryQty Float No
lightInfantryHealth Float No
heavyInfantryQty Float No
heavyInfantryHealth Float No

BuildArmyEventSumAggregateOutputType

Name Type Nullable
realmId Int No
armyId Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No

BuildArmyEventMinAggregateOutputType

Name Type Nullable
eventId String No
realmId Int No
armyId Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No
timestamp DateTime No

BuildArmyEventMaxAggregateOutputType

Name Type Nullable
eventId String No
realmId Int No
armyId Int No
lightCavalryQty Int No
lightCavalryHealth Int No
heavyCavalryQty Int No
heavyCavalryHealth Int No
archerQty Int No
archerHealth Int No
longbowQty Int No
longbowHealth Int No
mageQty Int No
mageHealth Int No
arcanistQty Int No
arcanistHealth Int No
lightInfantryQty Int No
lightInfantryHealth Int No
heavyInfantryQty Int No
heavyInfantryHealth Int No
timestamp DateTime No

BuildBuildingEventCountAggregateOutputType

Name Type Nullable
eventId Int Yes
buildingId Int Yes
realmId Int Yes
buildingIntegrity Int Yes
count Int Yes
timestamp Int Yes
_all Int Yes

BuildBuildingEventAvgAggregateOutputType

Name Type Nullable
buildingId Float No
realmId Float No
buildingIntegrity Float No
count Float No

BuildBuildingEventSumAggregateOutputType

Name Type Nullable
buildingId Int No
realmId Int No
buildingIntegrity Int No
count Int No

BuildBuildingEventMinAggregateOutputType

Name Type Nullable
eventId String No
buildingId Int No
realmId Int No
buildingIntegrity Int No
count Int No
timestamp DateTime No

BuildBuildingEventMaxAggregateOutputType

Name Type Nullable
eventId String No
buildingId Int No
realmId Int No
buildingIntegrity Int No
count Int No
timestamp DateTime No